From bb0cab9f10c4716e01972e9404849deb9f2882ca Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 13 Aug 2017 14:54:57 -0700 Subject: [PATCH] move max-width: 100% on .container to the root of the make-container mixin so it's not repeated at compilation (#22947) --- scss/mixins/_grid.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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%; }