Skip to content

Instantly share code, notes, and snippets.

@briansw
Last active August 29, 2015 14:22
Show Gist options
  • Save briansw/e13612c02b52d15fdf7d to your computer and use it in GitHub Desktop.
Save briansw/e13612c02b52d15fdf7d to your computer and use it in GitHub Desktop.
@mixin gridparent($columns) {
@extend %#{$columns};
@include whitespacefix;
@include nogutters;
}
@mixin griditem($columns, $font_size) {
@extend %#{$columns};
@extend %#{$font_size};
@include inlineblock;
}
.posts {
@include gridparent(c4);
.post {
@include griditem(c2, regular);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment