Created
July 31, 2014 05:17
-
-
Save etoxin/f07947dc229ad8c8026b to your computer and use it in GitHub Desktop.
SCSS Vertical Spacers
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
<div class="spacer50"></div> |
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
// vertical spacers | |
@for $i from 1 through 10 { | |
.spacer#{$i * 10} { | |
height: $i * 10 + px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment