25 lines
357 B
SCSS
Raw Normal View History

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