Skip to content

Instantly share code, notes, and snippets.

@andyharris
Created November 6, 2012 18:55
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 andyharris/4026709 to your computer and use it in GitHub Desktop.
Save andyharris/4026709 to your computer and use it in GitHub Desktop.
Removal of nth-omega at media sizes
li {
@include span-columns(2 of 4);
@include nth-omega(2n);
@include media($tablet) {
@include span-columns(2 of 8);
@include nth-omega(4n);
// NEED TO REMOVE nth-omega AT 2n HERE, AND AUTO APPLY CORRECT MARGIN-RIGHT
}
@include media($desktop) {
@include span-columns(3 of 12);
@include nth-omega(4n);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment