25 lines
371 B
SCSS
Raw Normal View History

@import '~app/icons.font.json';
// По умолчанию стрелка смотрит вниз, это просто алиас
.arrowBottom {
2020-05-24 02:08:24 +03:00
@extend .arrow;
}
2016-05-19 22:41:43 +03:00
.arrowTop {
2020-05-24 02:08:24 +03:00
@extend .arrow;
2016-05-19 22:41:43 +03:00
2020-05-24 02:08:24 +03:00
transform: rotate(180deg);
2016-05-19 22:41:43 +03:00
}
.arrowRight {
2020-05-24 02:08:24 +03:00
@extend .arrow;
2020-05-24 02:08:24 +03:00
transform: rotate(270deg);
}
.arrowLeft {
2020-05-24 02:08:24 +03:00
@extend .arrow;
2020-05-24 02:08:24 +03:00
transform: rotate(90deg);
2016-05-19 22:41:43 +03:00
}