From: alexej-d Date: Mon, 11 Apr 2016 20:22:41 +0000 (+0200) Subject: Remove duplication of max-width property X-Git-Tag: v6.2.2-rc1~66^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edcd2192f94461dc70b641af42bd7ee1dea00c6d;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Remove duplication of max-width property As a result of the `max-width` property being inside the `@each` statement, the property was needlessly duplicated while compiling. --- diff --git a/scss/grid/_row.scss b/scss/grid/_row.scss index 61fd4b1e8..9cd14883c 100644 --- a/scss/grid/_row.scss +++ b/scss/grid/_row.scss @@ -82,10 +82,10 @@ @if type-of($gutter) == 'number' { $gutter: ($-zf-zero-breakpoint: $gutter); } + max-width: none; @each $breakpoint, $value in $gutter { $margin: rem-calc($value) / 2 * -1; - max-width: none; @include breakpoint($breakpoint) { margin-left: $margin;