]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
move max-width: 100% on .container to the root of the make-container mixin so it...
authorMark Otto <markd.otto@gmail.com>
Sun, 13 Aug 2017 21:54:57 +0000 (14:54 -0700)
committerGitHub <noreply@github.com>
Sun, 13 Aug 2017 21:54:57 +0000 (14:54 -0700)
scss/mixins/_grid.scss

index 67dbcd38ece9282517d5360f868bd56d4d0dc562..b694b4d012bbb8e23ff95e9369ea2468893a7cad 100644 (file)
@@ -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%;
 }