mirror of https://github.com/astrit/css.gg.git
36 lines
680 B
CSS
36 lines
680 B
CSS
.gg-trending {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: rotate(-45deg) scale(var(--ggs,1));
|
|
width: 10px;
|
|
height: 8px;
|
|
border-top: 2px solid;
|
|
border-right: 2px solid
|
|
}
|
|
|
|
.gg-trending::after,
|
|
.gg-trending::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute
|
|
}
|
|
|
|
.gg-trending::before {
|
|
background: currentColor;
|
|
left: 8px;
|
|
width: 10px;
|
|
height: 2px;
|
|
bottom: 0
|
|
}
|
|
|
|
.gg-trending::after {
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 4px solid transparent;
|
|
border-bottom: 4px solid transparent;
|
|
border-left: 6px solid;
|
|
bottom: -3px;
|
|
right: -14px
|
|
} |