Grid number start with 2, not 1
This commit is contained in:
parent
2490a5dfe5
commit
9daae666df
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue