diff options
| author | Mark Otto <[email protected]> | 2016-02-06 11:36:45 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-02-06 11:36:45 -0800 |
| commit | 50e854affad315c0abcef6c6c58106f224ed52a8 (patch) | |
| tree | 2f008658a72bb67c521f55113c575bc5cb875339 | |
| parent | 4ab7c93bcc2e91a5dfd95829f9accde031586d61 (diff) | |
| download | bootstrap-50e854affad315c0abcef6c6c58106f224ed52a8.tar.xz bootstrap-50e854affad315c0abcef6c6c58106f224ed52a8.zip | |
property order and white space
| -rw-r--r-- | scss/mixins/_grid-framework.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/mixins/_grid-framework.scss b/scss/mixins/_grid-framework.scss index 2f4bb0b79..68ff9c4bc 100644 --- a/scss/mixins/_grid-framework.scss +++ b/scss/mixins/_grid-framework.scss @@ -11,9 +11,9 @@ @if $enable-flex { .col-#{$breakpoint} { @extend column-basics; // Relative position, min-height, and horizontal padding + max-width: 100%; flex-basis: 0; flex-grow: 1; - max-width: 100%; } } @@ -30,7 +30,7 @@ } } } - + // `$columns - 1` because offsetting by the width of an entire row isn't possible @for $i from 0 through ($columns - 1) { @if $breakpoint-counter != 1 or $i != 0 { // Avoid emitting useless .col-xs-offset-0 |
