Skip to content

Instantly share code, notes, and snippets.

@etoxin
Created July 31, 2014 05:17
Show Gist options
  • Save etoxin/f07947dc229ad8c8026b to your computer and use it in GitHub Desktop.
Save etoxin/f07947dc229ad8c8026b to your computer and use it in GitHub Desktop.
SCSS Vertical Spacers
<div class="spacer50"></div>
// 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