si no usamos !important, bootstrap nos pisa los helpers

This commit is contained in:
f 2021-05-31 15:02:52 -03:00
parent 0e4fd9871d
commit 466b9617fe

View file

@ -165,10 +165,10 @@ $directions: (top, right, bottom, left);
/// @link assets/css/styles.scss
@each $prop, $abbrev in (width: w, height: h) {
@each $size, $length in $sizes {
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length; }
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length; }
.min-#{$abbrev}#{$infix}-#{$size} { min-#{$prop}: $length; }
.max-#{$abbrev}#{$infix}-#{$size} { max-#{$prop}: $length; }
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
.min-#{$abbrev}#{$infix}-#{$size} { min-#{$prop}: $length !important; }
.max-#{$abbrev}#{$infix}-#{$size} { max-#{$prop}: $length !important; }
}
}