mirror of https://github.com/astrit/css.gg.git
31 lines
541 B
CSS
31 lines
541 B
CSS
.gg-arrange-back {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
transform: scale(var(--ggs,1));
|
|
display: block;
|
|
width: 18px;
|
|
height: 18px
|
|
}
|
|
|
|
.gg-arrange-back::after,
|
|
.gg-arrange-back::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute
|
|
}
|
|
|
|
.gg-arrange-back::after {
|
|
width: 10px;
|
|
height: 10px;
|
|
border: 2px solid;
|
|
left: 4px;
|
|
top: 4px
|
|
}
|
|
|
|
.gg-arrange-back::before {
|
|
width: 8px;
|
|
height: 8px;
|
|
background: currentColor;
|
|
box-shadow: 10px 10px 0
|
|
} |