mirror of https://github.com/astrit/css.gg.git
23 lines
366 B
CSS
23 lines
366 B
CSS
.gg-cross {
|
|
transform: scale(var(--ggs,1))
|
|
}
|
|
|
|
.gg-cross,
|
|
.gg-cross::after {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
width: 10px;
|
|
height: 2px;
|
|
border-radius: 3px;
|
|
background: currentColor
|
|
}
|
|
|
|
.gg-cross::after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 2px;
|
|
height: 12px;
|
|
top: -4px;
|
|
left: 4px
|
|
} |