si no usamos !important, bootstrap nos pisa los helpers
This commit is contained in:
parent
0e4fd9871d
commit
466b9617fe
1 changed files with 4 additions and 4 deletions
|
@ -165,10 +165,10 @@ $directions: (top, right, bottom, left);
|
||||||
/// @link assets/css/styles.scss
|
/// @link assets/css/styles.scss
|
||||||
@each $prop, $abbrev in (width: w, height: h) {
|
@each $prop, $abbrev in (width: w, height: h) {
|
||||||
@each $size, $length in $sizes {
|
@each $size, $length in $sizes {
|
||||||
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length; }
|
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
|
||||||
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length; }
|
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
|
||||||
.min-#{$abbrev}#{$infix}-#{$size} { min-#{$prop}: $length; }
|
.min-#{$abbrev}#{$infix}-#{$size} { min-#{$prop}: $length !important; }
|
||||||
.max-#{$abbrev}#{$infix}-#{$size} { max-#{$prop}: $length; }
|
.max-#{$abbrev}#{$infix}-#{$size} { max-#{$prop}: $length !important; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue