Skip to content

Instantly share code, notes, and snippets.

@ryanbahniuk
Created June 24, 2015 16:39
Show Gist options
  • Save ryanbahniuk/417eb23d2b8008b6bcb1 to your computer and use it in GitHub Desktop.
Save ryanbahniuk/417eb23d2b8008b6bcb1 to your computer and use it in GitHub Desktop.
@mixin make-order($label, $width) {
.order-#{$label}-#{$width} {
order: $width - 1;
}
}
@mixin make-specific-alignments($label) {
@for $i from 1 through ($grid-columns) {
@include make-order($label, $i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment