45 lines
653 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);
2021-03-26 04:19:04 +01:00
html[dir='rtl'] & {
transform: rotate(90deg);
}
}
.arrowLeft {
2020-05-24 02:08:24 +03:00
@extend .arrow;
2020-05-24 02:08:24 +03:00
transform: rotate(90deg);
2021-03-26 04:19:04 +01:00
html[dir='rtl'] & {
transform: rotate(270deg);
}
}
html[dir='rtl'] {
.brush,
.exit,
.key,
.pencil,
.search {
&:before {
transform: scaleX(-1);
}
}
2016-05-19 22:41:43 +03:00
}