Skip to content

Instantly share code, notes, and snippets.

@disgusting-dev
Created April 5, 2021 14:53
Show Gist options
  • Save disgusting-dev/34b7a54ba10dc2f77896524f72004f1f to your computer and use it in GitHub Desktop.
Save disgusting-dev/34b7a54ba10dc2f77896524f72004f1f to your computer and use it in GitHub Desktop.
$colsAmount: 9;
$colStep: 100% / $colsAmount;
@for $i from 1 through $colsAmount {
.col-#{$i} {
width: $colStep * $i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment