Skip to content

Instantly share code, notes, and snippets.

@jordan112
Created November 20, 2014 16:08
Show Gist options
  • Save jordan112/03762c88fec6999430b1 to your computer and use it in GitHub Desktop.
Save jordan112/03762c88fec6999430b1 to your computer and use it in GitHub Desktop.
@mixin locked-width-column($width) {
width: $width;
min-width: $width;
max-width: $width;
}
/* usage example */
.td { @include locked-width-column(4em); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment