From b44dd0d961388b535a8ecf82e4203853094518a7 Mon Sep 17 00:00:00 2001 From: andycochran Date: Tue, 29 Nov 2016 21:04:53 -0500 Subject: [PATCH] semantically rename block grid mixin --- scss/grid/_gutter.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 { -- 2.47.2