39 lines
598 B
CSS
39 lines
598 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.trend {
|
|
position: relative;
|
|
width: 10px;
|
|
height: 8px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-top: 2px solid;
|
|
border-right: 2px solid;
|
|
transform: rotate(-45deg);
|
|
|
|
&::after,
|
|
&::before {
|
|
position: absolute;
|
|
content: "";
|
|
box-sizing: border-box;
|
|
display: block;
|
|
}
|
|
|
|
&::before {
|
|
bottom: 0;
|
|
left: 8px;
|
|
width: 10px;
|
|
height: 2px;
|
|
background-color: currentColor;
|
|
}
|
|
|
|
&::after {
|
|
right: -14px;
|
|
bottom: -3px;
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 4px solid transparent;
|
|
border-bottom: 4px solid transparent;
|
|
border-left: 6px solid;
|
|
}
|
|
}
|