mirror of https://github.com/ColorlibHQ/AdminLTE
Fix RTL for sidebar menu
parent
a84c1ee098
commit
060f9082a6
|
@ -9,6 +9,7 @@
|
|||
|
||||
.right {
|
||||
@include transition(transform $transition-fn $transition-speed);
|
||||
transform: none #{"/*rtl:rotate(-180deg)*/"};
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -57,7 +58,7 @@
|
|||
> .nav-link {
|
||||
svg.right,
|
||||
i.right {
|
||||
@include rotate(-90deg);
|
||||
transform: rotate(-90deg) #{"/*rtl:rotate(-90deg)*/"};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
// #{$property}: calc(#{$expression});
|
||||
// }
|
||||
|
||||
@mixin rotate($value) {
|
||||
transform: rotate($value);
|
||||
}
|
||||
// @mixin rotate($value) {
|
||||
// transform: rotate($value);
|
||||
// }
|
||||
|
||||
// @mixin animation($animation) {
|
||||
// animation: $animation;
|
||||
|
|
Loading…
Reference in New Issue