css.gg
Version:
Minimalistic Icon library Designed by code.
40 lines (37 loc) • 724 B
CSS
.gg-reorder {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 14px;
height: 2px;
border-radius: 3px;
background: currentColor
}
.gg-reorder::after,
.gg-reorder::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
border-radius: 3px
}
.gg-reorder::before {
border: 2px solid;
width: 6px;
height: 6px;
left: 12px;
top: -2px
}
.gg-reorder::after {
top: -4px;
left: 0;
width: 10px;
height: 2px;
opacity: .5;
background: currentColor;
box-shadow:
0 8px 0 0,
0 12px 0 0,
0 16px 0 0
}