31 lines
No EOL
551 B
SCSS
31 lines
No EOL
551 B
SCSS
button.sort{
|
|
|
|
|
|
.arrow{
|
|
line-height: 0;
|
|
--size: 12px;
|
|
height: var(--size);
|
|
width: var(--size);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
top: -2px;
|
|
transform: rotate(90deg);
|
|
transition: transform 0.2s ease-in;
|
|
svg{
|
|
width: 100%;
|
|
fill: var(--color-txt);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&[data-sort-type="up"]{
|
|
.arrow{
|
|
transform: rotate(-90deg);
|
|
}
|
|
}
|
|
|
|
} |