mirror of https://github.com/astrit/css.gg.git
23 lines
454 B
CSS
23 lines
454 B
CSS
.gg-toggle-square-off {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 24px;
|
|
height: 14px;
|
|
border: 2px solid;
|
|
border-radius: 2px
|
|
}
|
|
|
|
.gg-toggle-square-off::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 6px;
|
|
height: 6px;
|
|
background: currentColor;
|
|
top: 2px;
|
|
left: 12px;
|
|
border-radius: 1px
|
|
} |