Created
April 3, 2016 03:11
-
-
Save orlando/f51f10f3b5451db0746480193a9ce4fb to your computer and use it in GitHub Desktop.
padding margins helpers
This file contains 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
// padding/margins helpers | |
$sizes: (xs: 0.5rem, sm: 1rem, md: 1.5rem, lg: 2rem, xl: 2.5rem); | |
$properties: ('top', 'right', 'left', 'bottom'); | |
@each $name, $value in $sizes { | |
@each $prop in $properties { | |
.margin-#{$prop}-#{$name} { | |
margin-#{$prop}: $value; | |
} | |
.padding-#{$prop}-#{$name} { | |
padding-#{$prop}: $value; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment