From 466b9617fe337bbc702cc649fc1d17126b652370 Mon Sep 17 00:00:00 2001 From: f Date: Mon, 31 May 2021 15:02:52 -0300 Subject: [PATCH] si no usamos !important, bootstrap nos pisa los helpers --- _sass/helpers.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_sass/helpers.scss b/_sass/helpers.scss index ccae670..6d0735b 100644 --- a/_sass/helpers.scss +++ b/_sass/helpers.scss @@ -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; } } }