mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
25 lines
322 B
SCSS
25 lines
322 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
html[dir="rtl"] {
|
|
body {
|
|
text-align: right;
|
|
direction: rtl;
|
|
}
|
|
|
|
.hide-rtl {
|
|
display: none !important;
|
|
}
|
|
|
|
.show-rtl {
|
|
display: block !important;
|
|
}
|
|
|
|
.float-right {
|
|
float: left !important;
|
|
}
|
|
|
|
.float-left {
|
|
float: right !important;
|
|
}
|
|
}
|