]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
semantically rename block grid mixin
authorandycochran <andrewthomascochran@gmail.com>
Wed, 30 Nov 2016 02:04:53 +0000 (21:04 -0500)
committerandycochran <andrewthomascochran@gmail.com>
Wed, 30 Nov 2016 02:04:53 +0000 (21:04 -0500)
scss/grid/_gutter.scss

index 941014cfa6d0415a9255f2d7955bc0b7a596c0f9..7ca7169f681bb724fbae15e5c32809771a6c800a 100644 (file)
   @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
 ) {
     // "auto"
     @each $breakpoint, $value in $margins {
       @include breakpoint($breakpoint) {
-        @include block-grid-column($value);
+        @include grid-column-margin($value);
       }
     }
   } @else {