Grid number start with 2, not 1

This commit is contained in:
Raphael Goetter 2017-12-18 12:22:18 +01:00
parent 2490a5dfe5
commit 9daae666df

View File

@ -36,7 +36,7 @@ $large: 992px !default;
}
// grid constructor (.grid-2 to .grid-12)
@for $i from 1 through 12 {
@for $i from 2 through 12 {
[class*="grid-#{$i}"] {
grid-template-columns: repeat(#{$i}, 1fr);
}