Skip to content

Instantly share code, notes, and snippets.

@thisavoropaev
Created May 7, 2016 11:16
Show Gist options
  • Save thisavoropaev/c7c2f06419720d8941320a7f61118dc7 to your computer and use it in GitHub Desktop.
Save thisavoropaev/c7c2f06419720d8941320a7f61118dc7 to your computer and use it in GitHub Desktop.
@mixin do-columns($width-list) {
& {
width: 100%;
font-size: 0;
}
>* {
@include ext_default-font-size;
display: inline-block;
vertical-align: top;
box-sizing: border-box;
}
@for $i from 1 through length($width-list) {
$width: nth($width-list, $i);
>*:nth-child(#{$i}) { width: calc(#{unquote($width)});}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment