]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Renamed `sizes` to `prototype-sizes`
authorharry <harmanmanchanda182@gmail.com>
Sun, 5 Feb 2017 03:50:12 +0000 (09:20 +0530)
committerharry <harmanmanchanda182@gmail.com>
Sun, 5 Feb 2017 03:50:12 +0000 (09:20 +0530)
scss/prototype/_sizing.scss

index 98d038222b4d5ad95e856feade3902eef92862f0..4c8e2f5ce856f4e01632656bfd130a791049bee9 100644 (file)
@@ -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; 
       }