vendor/assets/scss/grid/_row.scss in foundation-rails-6.2.0.1 vs vendor/assets/scss/grid/_row.scss in foundation-rails-6.2.1.0

- old
+ new

@@ -78,14 +78,15 @@ /// Inverts the margins of a row to nest it inside of a column. /// /// @param {Map|null} $gutter [null] - Gutter value to use when inverting the margins. Set to `null` to refer to the responsive gutter settings. @mixin grid-row-nest($gutter: $grid-column-gutter) { @if type-of($gutter) == 'number' { - $gutter: (small: $gutter); + $gutter: ($-zf-zero-breakpoint: $gutter); } @each $breakpoint, $value in $gutter { $margin: rem-calc($value) / 2 * -1; + max-width: none; @include breakpoint($breakpoint) { margin-left: $margin; margin-right: $margin; }