From: harry Date: Sun, 12 Feb 2017 12:53:36 +0000 (+0530) Subject: Added mixin docs to sizing utility X-Git-Tag: v6.4.0-rc1~23^2~20^2~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13722c6eec379ebee86ae4e4eaf5ef4889d812e9;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Added mixin docs to sizing utility Also removed extra line space from spacing utility --- diff --git a/scss/prototype/_sizing.scss b/scss/prototype/_sizing.scss index 0aa62f8e6..927d99b97 100644 --- a/scss/prototype/_sizing.scss +++ b/scss/prototype/_sizing.scss @@ -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%; } diff --git a/scss/prototype/_spacing.scss b/scss/prototype/_spacing.scss index 49daffd7a..f3b24f164 100644 --- a/scss/prototype/_spacing.scss +++ b/scss/prototype/_spacing.scss @@ -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);