]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Add comments for mixins!
authorharry <harmanmanchanda182@gmail.com>
Thu, 7 Sep 2017 18:31:38 +0000 (00:01 +0530)
committerharry <harmanmanchanda182@gmail.com>
Thu, 7 Sep 2017 18:31:38 +0000 (00:01 +0530)
scss/prototype/_spacing.scss

index 1c208e8d86fc5e0425395ae0273ca37f778c8fd6..069974343b1f041b8f10c250d4e7f951481b2fc1 100644 (file)
@@ -70,6 +70,9 @@ $prototype-direction: (
   }
 }
 
+/// Margin classes for specific direction properties
+/// @param {String} $dir [] Direction
+/// @param {Number} $spacer [] Spacer
 @mixin margin-direction($dir, $spacer) {
   @if ($dir == top) { 
     @include margin($top: $spacer); 
@@ -91,6 +94,9 @@ $prototype-direction: (
   }
 }
 
+/// Padding classes for specific direction properties
+/// @param {String} $dir [] Direction
+/// @param {Number} $spacer [] Spacer
 @mixin padding-direction($dir, $spacer) {
   @if ($dir == top) { 
     @include padding($top: $spacer);