mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-01 00:13:05 +05:30
25 lines
357 B
SCSS
25 lines
357 B
SCSS
@import '~app/icons.font.json';
|
|
|
|
// По умолчанию стрелка смотрит вниз, это просто алиас
|
|
.arrowBottom {
|
|
@extend .arrow;
|
|
}
|
|
|
|
.arrowTop {
|
|
@extend .arrow;
|
|
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.arrowRight {
|
|
@extend .arrow;
|
|
|
|
transform: rotate(270deg);
|
|
}
|
|
|
|
.arrowLeft {
|
|
@extend .arrow;
|
|
|
|
transform: rotate(90deg);
|
|
}
|