diff options
| author | Kevin Ruscoe <[email protected]> | 2017-12-31 00:28:12 +0000 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2017-12-31 02:28:12 +0200 |
| commit | d90dddf5e0247191b6be1310a05bc8a32edeaf64 (patch) | |
| tree | b1fb315847c1b80e599345e466d9641f5542c42e | |
| parent | 2b41526b4fecd0dc1df0c84efa41e8d268865245 (diff) | |
| download | bootstrap-d90dddf5e0247191b6be1310a05bc8a32edeaf64.tar.xz bootstrap-d90dddf5e0247191b6be1310a05bc8a32edeaf64.zip | |
Add `.order-0` to the flexbox grid ordering helpers. (#25137)
| -rw-r--r-- | scss/mixins/_grid-framework.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/mixins/_grid-framework.scss b/scss/mixins/_grid-framework.scss index 41bdf4646..4f854f495 100644 --- a/scss/mixins/_grid-framework.scss +++ b/scss/mixins/_grid-framework.scss @@ -50,7 +50,7 @@ order: -1; } - @for $i from 1 through $columns { + @for $i from 0 through $columns { .order#{$infix}-#{$i} { order: $i; } |
