Last active
November 16, 2015 13:05
-
-
Save mhz-tamb/a56325c13241f106235f to your computer and use it in GitHub Desktop.
SASS generation paggings
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 characters
$paddings: (5, 10, 15, 20, 25, 30); | |
@each $padding in $paddings { | |
.mt-#{$padding} { | |
margin-top: #{$padding}px; | |
} | |
} | |
@each $padding in $paddings { | |
.mb-#{$padding} { | |
margin-bottom: #{$padding}px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment