fix margins only on rtl

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

@ -2,16 +2,18 @@
// --------------------------------- // ---------------------------------
// FIX VUETIFY BROKEN RTL MARGIN // FIX VUETIFY BROKEN RTL MARGIN
// --------------------------------- // ---------------------------------
.is-rtl {
@for $i from 1 through 8 { @for $i from 1 through 8 {
.is-rtl .ml-#{$i} { .ml-#{$i} {
margin-left: 0px !important; margin-left: 0px !important;
margin-right: ($i * 4px) !important; margin-right: ($i * 4px) !important;
} }
.is-rtl .mr-#{$i} { .mr-#{$i} {
margin-left: ($i * 4px) !important; margin-left: ($i * 4px) !important;
margin-right: 0px !important; margin-right: 0px !important;
} }
} }
}
.v-main .contents { .v-main .contents {
color: mc('grey', '800'); color: mc('grey', '800');
padding: .5rem 0 50px; padding: .5rem 0 50px;

Loading…
Cancel
Save