From: Mark Otto Date: Sun, 13 Aug 2017 21:54:57 +0000 (-0700) Subject: move max-width: 100% on .container to the root of the make-container mixin so it... X-Git-Tag: v4.0.0-beta.2~382^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb0cab9f10c4716e01972e9404849deb9f2882ca;p=thirdparty%2Fbootstrap.git move max-width: 100% on .container to the root of the make-container mixin so it's not repeated at compilation (#22947) --- diff --git a/scss/mixins/_grid.scss b/scss/mixins/_grid.scss index 67dbcd38ec..b694b4d012 100644 --- a/scss/mixins/_grid.scss +++ b/scss/mixins/_grid.scss @@ -3,11 +3,11 @@ // Generate semantic grid columns with these mixins. @mixin make-container() { + width: 100%; margin-right: auto; margin-left: auto; padding-right: ($grid-gutter-width / 2); padding-left: ($grid-gutter-width / 2); - width: 100%; }