1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00
Files
tabler/scss/_rtl.scss
2019-03-12 22:09:23 +01:00

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;
}
}