From: harry Date: Thu, 7 Sep 2017 18:48:15 +0000 (+0530) Subject: Code correction X-Git-Tag: v6.4.4-rc1~15^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc660cbc2a5d898125554c087382826462671692;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Code correction --- diff --git a/scss/prototype/_spacing.scss b/scss/prototype/_spacing.scss index 2876d17a1..3ea1f149d 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; + margin: $spacer * $global-margin; } @else if ($prop == padding) { - padding: $spacer; + padding: $spacer * $global-margin; } } @@ -149,10 +149,10 @@ $prototype-spacers-count: 3 !default; // All Sides &-#{$prop}-#{$spacer} { @if ($prop == margin) { - margin: $spacer; + margin: $spacer * $global-margin; } @else if ($prop == padding) { - padding: $spacer; + padding: $spacer * $global-margin; } }