index-main/assets/css/components/_sort.scss
Julie Blanc d7a8611376
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s
create dropdown
2026-01-21 16:33:15 +01:00

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);
}
}
}