From: Kevin Ball Date: Wed, 19 Jul 2017 22:33:10 +0000 (-0700) Subject: Cell should always emit gutters if -output is enabled X-Git-Tag: v6.4.2-rc2~1^2~16^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10437%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Cell should always emit gutters if -output is enabled --- diff --git a/scss/xy-grid/_cell.scss b/scss/xy-grid/_cell.scss index dcdbed0f0..d5249da41 100644 --- a/scss/xy-grid/_cell.scss +++ b/scss/xy-grid/_cell.scss @@ -130,17 +130,7 @@ } @if $gutter-output { - // If gutters = map - @if(type-of($gutters) == 'map') { - // If $gutters map has a key = $breakpoint, output the value - @if (map-has-key($gutters, $breakpoint)) { - @include xy-gutters($gutter, $gutter-type, $gutter-position); - } - } - // If not a map - @else { - @include xy-gutters($gutter, $gutter-type, $gutter-position); - } + @include xy-gutters($gutter, $gutter-type, $gutter-position); } }