]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Added mixin docs to sizing utility
authorharry <harmanmanchanda182@gmail.com>
Sun, 12 Feb 2017 12:53:36 +0000 (18:23 +0530)
committerharry <harmanmanchanda182@gmail.com>
Sun, 12 Feb 2017 12:53:36 +0000 (18:23 +0530)
Also removed extra line space from spacing utility

scss/prototype/_sizing.scss
scss/prototype/_spacing.scss

index 0aa62f8e64b243ffbc8b000bf5f775410097b62d..927d99b97d9240363e88c6db238b8c4d521654b0 100644 (file)
@@ -21,10 +21,12 @@ $prototype-sizes: (
   100: 100%
 ) !default;
 
+/// Max Width 100 utility.
 @mixin max-width-100 {
   max-width: 100%;
 }
 
+/// Max Height 100 utility.
 @mixin max-height-100 {
   max-height: 100%;
 }
index 49daffd7aab30abe37e62676e0837cabb54a3f5a..f3b24f16414c9c1295dee47ef7f888626d740b82 100644 (file)
@@ -48,7 +48,6 @@ $prototype-spacers-count: 5 !default;
 }
 
 @mixin foundation-prototype-spacing {
-
   @each $prop, $abbrev in $prototype-spacing-classes {
     @each $size, $lengths in $prototype-spacers {
       $length-x:   map-get($lengths, x);