From: Mark Otto Date: Fri, 7 Apr 2017 18:41:44 +0000 (-0700) Subject: drop flex and max-width, just use width X-Git-Tag: v4.0.0-beta~147^2~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2436ad589cfc235c84160fe14e4cc4ec97a9c5ca;p=thirdparty%2Fbootstrap.git drop flex and max-width, just use width --- diff --git a/scss/mixins/_grid.scss b/scss/mixins/_grid.scss index cf4f58b5a5..87920e284f 100644 --- a/scss/mixins/_grid.scss +++ b/scss/mixins/_grid.scss @@ -67,12 +67,7 @@ } @mixin make-col($size, $columns: $grid-columns) { - flex: 0 0 percentage($size / $columns); - // width: percentage($size / $columns); - // Add a `max-width` to ensure content within each column does not blow out - // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari - // do not appear to require this. - max-width: percentage($size / $columns); + width: percentage($size / $columns); } @mixin make-col-offset($size, $columns: $grid-columns) {