diff options
| author | Mark Otto <[email protected]> | 2017-08-04 14:58:40 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-08-04 14:58:40 -0700 |
| commit | 965a5bd7fe919ac4e205a4d97d63b84118f94c65 (patch) | |
| tree | 445485c16244e5cfcd4044aa43809db3ecd4ac39 | |
| parent | 062d113eee8422d5f6321143009ee0884dfe2466 (diff) | |
| parent | b2712048ce0b49188f644742577056096205656e (diff) | |
| download | bootstrap-965a5bd7fe919ac4e205a4d97d63b84118f94c65.tar.xz bootstrap-965a5bd7fe919ac4e205a4d97d63b84118f94c65.zip | |
Merge branch 'issue_23100' of https://github.com/chiraggmodi/bootstrap into chiraggmodi-issue_23100
| -rw-r--r-- | scss/mixins/_grid.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/mixins/_grid.scss b/scss/mixins/_grid.scss index 5c00f57d7..67dbcd38e 100644 --- a/scss/mixins/_grid.scss +++ b/scss/mixins/_grid.scss @@ -7,6 +7,7 @@ margin-left: auto; padding-right: ($grid-gutter-width / 2); padding-left: ($grid-gutter-width / 2); + width: 100%; } @@ -14,8 +15,7 @@ @mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) { @each $breakpoint, $container-max-width in $max-widths { @include media-breakpoint-up($breakpoint, $breakpoints) { - width: $container-max-width; - max-width: 100%; + max-width: $container-max-width; } } } |
