Skip to content

Instantly share code, notes, and snippets.

@mtrythall
Created January 20, 2016 19:16
Show Gist options
  • Save mtrythall/71f863f512b1de495cc0 to your computer and use it in GitHub Desktop.
Save mtrythall/71f863f512b1de495cc0 to your computer and use it in GitHub Desktop.
Sizing Mixin
@mixin by-x($num, $spacing: 20px, $max-width: false) {
width: calc(100% * 1/#{$num} - #{$spacing});
@if $max-width {
max-width: $max-width;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment