Created
September 9, 2015 07:53
-
-
Save sunnyluthra/77bb11f50c01551e462c to your computer and use it in GitHub Desktop.
Revisions
-
sunnyluthra created this gist
Sep 9, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ @mixin class-generator($classNamespace, $fromValue, $toValue, $multiple, $property, $unit) { @for $i from $fromValue to $toValue { .#{$classNamespace}#{$i*$multiple} { #{$property}: #{$i*$multiple}#{$unit}; } } } @include class-generator(pt, 0, 25, 5, padding-top, px);