Last active
April 24, 2019 17:31
-
-
Save halfnibble/1ff1f405695c207f12532be663c7793a to your computer and use it in GitHub Desktop.
Sass Grid For Loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@for $i from 1 through 12 | |
.col-sm-#{$i} | |
@include sizer(small) | |
float: left | |
width: percentage(($i/12)) | |
.col-md-#{$i} | |
@include sizer(medium) | |
float: left | |
width: percentage(($i/12)) | |
.col-lg-#{$i} | |
@include sizer(large) | |
float: left | |
width: percentage(($i/12)) | |
@for $i from 1 through 12 | |
.col-sm-#{$i} | |
@include sizer(small) | |
flex: $i | |
.col-md-#{$i} | |
@include sizer(medium) | |
flex: $i | |
.col-lg-#{$i} | |
@include sizer(large) | |
flex: $i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment