mirror of https://github.com/astrit/css.gg.git
31 lines
572 B
CSS
31 lines
572 B
CSS
.gg-push-down {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 2px;
|
|
height: 16px;
|
|
background: currentColor;
|
|
}
|
|
|
|
.gg-push-down::after,
|
|
.gg-push-down::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 12px;
|
|
height: 2px;
|
|
border-bottom: 2px solid;
|
|
bottom: -5px;
|
|
left: -5px
|
|
}
|
|
|
|
.gg-push-down::after {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-right: 2px solid;
|
|
transform: rotate(45deg);
|
|
left: -3px;
|
|
bottom: 0
|
|
} |