Skip to content

Instantly share code, notes, and snippets.

@elbym
Created March 12, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elbym/bb54d575f780cd054827 to your computer and use it in GitHub Desktop.
Save elbym/bb54d575f780cd054827 to your computer and use it in GitHub Desktop.
Zen Grids SASS
@for $zengrid from 1 through 4 {
.zen-grid-#{$zengrid}col {
@include clearfix;
$zen-column-count: $zengrid;
@for $i from 1 through $zen-column-count {
.zen-grid-#{$i} {
@include zen-grid-item(1, $i);
@if $i == 1 {
@include zen-clear();
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment