Skip to content

Instantly share code, notes, and snippets.

@ahaywood
Created March 23, 2017 15:45
Show Gist options
  • Save ahaywood/a45642aa5ccd76b60d4c03390f0eb8c4 to your computer and use it in GitHub Desktop.
Save ahaywood/a45642aa5ccd76b60d4c03390f0eb8c4 to your computer and use it in GitHub Desktop.
Sass @for loop to create a grid system
$class-slug: span !default;
@for $i from 1 through 4 {
.#{$class-slug}-#{$i} {
width: 60px + $i
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment