mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-06 05:29:16 +05:30
45 lines
653 B
SCSS
45 lines
653 B
SCSS
@import '~app/icons.font.json';
|
|
|
|
// По умолчанию стрелка смотрит вниз, это просто алиас
|
|
.arrowBottom {
|
|
@extend .arrow;
|
|
}
|
|
|
|
.arrowTop {
|
|
@extend .arrow;
|
|
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.arrowRight {
|
|
@extend .arrow;
|
|
|
|
transform: rotate(270deg);
|
|
|
|
html[dir='rtl'] & {
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|
|
|
|
.arrowLeft {
|
|
@extend .arrow;
|
|
|
|
transform: rotate(90deg);
|
|
|
|
html[dir='rtl'] & {
|
|
transform: rotate(270deg);
|
|
}
|
|
}
|
|
|
|
html[dir='rtl'] {
|
|
.brush,
|
|
.exit,
|
|
.key,
|
|
.pencil,
|
|
.search {
|
|
&:before {
|
|
transform: scaleX(-1);
|
|
}
|
|
}
|
|
}
|