From edcd2192f94461dc70b641af42bd7ee1dea00c6d Mon Sep 17 00:00:00 2001 From: alexej-d Date: Mon, 11 Apr 2016 22:22:41 +0200 Subject: [PATCH] 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. --- scss/grid/_row.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2