mirror of https://github.com/astrit/css.gg.git
24 lines
470 B
CSS
24 lines
470 B
CSS
.gg-battery-empty {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
width: 20px;
|
|
height: 12px;
|
|
transform: scale(var(--ggs,1));
|
|
border: 2px solid;
|
|
border-radius: 3px;
|
|
margin-left: -3px
|
|
}
|
|
|
|
.gg-battery-empty::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
border-radius: 3px;
|
|
width: 4px;
|
|
height: 6px;
|
|
right: -4px;
|
|
top: 1px;
|
|
background: currentColor
|
|
} |