fix margins only on rtl

pull/3769/head
Opal Mizrahi 6 years ago
parent e378842f81
commit 4b099e8aac

@ -2,14 +2,16 @@
// --------------------------------- // ---------------------------------
// FIX VUETIFY BROKEN RTL MARGIN // FIX VUETIFY BROKEN RTL MARGIN
// --------------------------------- // ---------------------------------
@for $i from 1 through 8 { .is-rtl {
.is-rtl .ml-#{$i} { @for $i from 1 through 8 {
margin-left: 0px !important; .ml-#{$i} {
margin-right: ($i * 4px) !important; margin-left: 0px !important;
} margin-right: ($i * 4px) !important;
.is-rtl .mr-#{$i} { }
margin-left: ($i * 4px) !important; .mr-#{$i} {
margin-right: 0px !important; margin-left: ($i * 4px) !important;
margin-right: 0px !important;
}
} }
} }
.v-main .contents { .v-main .contents {

Loading…
Cancel
Save