From: harry Date: Sun, 5 Feb 2017 03:50:12 +0000 (+0530) Subject: Renamed `sizes` to `prototype-sizes` X-Git-Tag: v6.4.0-rc1~23^2~20^2~131 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4419e7c6d50be5c356eb25c67643448ebff4cd32;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Renamed `sizes` to `prototype-sizes` --- diff --git a/scss/prototype/_sizing.scss b/scss/prototype/_sizing.scss index 98d038222..4c8e2f5ce 100644 --- a/scss/prototype/_sizing.scss +++ b/scss/prototype/_sizing.scss @@ -14,7 +14,7 @@ $prototype-sizing-classes: ( // Map containing all the sizes. // @type Boolean -$sizes: ( +$prototype-sizes: ( 25: 25%, 50: 50%, 75: 75%, @@ -32,7 +32,7 @@ $sizes: ( @mixin foundation-prototype-sizing { // Element Sizing @each $sizing in $prototype-sizing-classes { - @each $size, $percentage in $sizes { + @each $size, $percentage in $prototype-sizes { .#{$sizing}-#{$size} { #{$sizing}: $percentage; }