From: Mathieu Date: Sat, 2 Mar 2019 23:20:26 +0000 (+0000) Subject: fix: prototype spacing specificity consistency X-Git-Tag: v6.6.0~3^2~33^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11711%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git fix: prototype spacing specificity consistency --- diff --git a/scss/prototype/_spacing.scss b/scss/prototype/_spacing.scss index 9f7a44559..3129a2b4b 100644 --- a/scss/prototype/_spacing.scss +++ b/scss/prototype/_spacing.scss @@ -119,10 +119,10 @@ $prototype-spacers-count: 3 !default; // All Sides .#{$prop}-#{$spacer} { @if ($prop == margin) { - margin: $spacer * $global-margin; + margin: $spacer * $global-margin !important; } @else if ($prop == padding) { - padding: $spacer * $global-padding; + padding: $spacer * $global-padding !important; } } @@ -151,10 +151,10 @@ $prototype-spacers-count: 3 !default; // All Sides &-#{$prop}-#{$spacer} { @if ($prop == margin) { - margin: $spacer * $global-margin; + margin: $spacer * $global-margin !important; } @else if ($prop == padding) { - padding: $spacer * $global-padding; + padding: $spacer * $global-padding !important; } }