Skip to content

Instantly share code, notes, and snippets.

@h2non
Created November 27, 2013 14:57
Show Gist options
  • Save h2non/7677057 to your computer and use it in GitHub Desktop.
Save h2non/7677057 to your computer and use it in GitHub Desktop.
@mixin make-grid-columns($cols: $cols-all) {
// Common styles for all sizes of grid columns, widths 1-12
@debug #{$cols};
#{$cols} {
position: relative;
// Prevent columns from collapsing when empty
min-height: 1px;
// Inner gutter via padding
padding-left: ($grid-gutter-width / 2);
padding-right: ($grid-gutter-width / 2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment