From: andycochran Date: Wed, 30 Nov 2016 02:04:53 +0000 (-0500) Subject: semantically rename block grid mixin X-Git-Tag: v6.3-rc1~6^2~6^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b44dd0d961388b535a8ecf82e4203853094518a7;p=thirdparty%2Ffoundation%2Ffoundation-sites.git semantically rename block grid mixin --- diff --git a/scss/grid/_gutter.scss b/scss/grid/_gutter.scss index 941014cfa..7ca7169f6 100644 --- a/scss/grid/_gutter.scss +++ b/scss/grid/_gutter.scss @@ -91,14 +91,14 @@ @include grid-column-uncollapse($gutter); } -/// Sets bottom marin on block grid columns to match gutters +/// Sets bottom marin on grid columns to match gutters /// @param {Number|Keyword} $margin [auto] -/// The bottom margin on block grid columns, accepts multiple values: +/// The bottom margin on grid columns, accepts multiple values: /// - A single value will make the margin that exact size. /// - A breakpoint name will make the margin the corresponding size in the $margins map. /// - "auto" will make the margin responsive, using the $margins map values. /// @param {Number|Map} $margins [$grid-column-gutter] - Map or single value to use. Responsive gutter settings by default. -@mixin block-grid-column ( +@mixin grid-column-margin ( $margin: auto, $margins: $grid-column-gutter ) { @@ -106,7 +106,7 @@ // "auto" @each $breakpoint, $value in $margins { @include breakpoint($breakpoint) { - @include block-grid-column($value); + @include grid-column-margin($value); } } } @else {