From: Kevin Ruscoe Date: Sun, 31 Dec 2017 00:28:12 +0000 (+0000) Subject: Add `.order-0` to the flexbox grid ordering helpers. (#25137) X-Git-Tag: v4.0.0~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d90dddf5e0247191b6be1310a05bc8a32edeaf64;p=thirdparty%2Fbootstrap.git Add `.order-0` to the flexbox grid ordering helpers. (#25137) --- diff --git a/scss/mixins/_grid-framework.scss b/scss/mixins/_grid-framework.scss index 41bdf4646d..4f854f4951 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; }