diff options
| author | Chirag Modi <[email protected]> | 2017-07-18 11:48:59 +0530 |
|---|---|---|
| committer | Chirag Modi <[email protected]> | 2017-07-18 11:48:59 +0530 |
| commit | b2712048ce0b49188f644742577056096205656e (patch) | |
| tree | 0ad01c511ea9198edf8568a8cc000e6d3738468c | |
| parent | a52a1fbb13a908f4b0eca9671436f325fb45a61b (diff) | |
| download | bootstrap-b2712048ce0b49188f644742577056096205656e.tar.xz bootstrap-b2712048ce0b49188f644742577056096205656e.zip | |
make changes as per suggestion in #23100
| -rw-r--r-- | scss/mixins/_grid.scss | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scss/mixins/_grid.scss b/scss/mixins/_grid.scss index b7d442749..67dbcd38e 100644 --- a/scss/mixins/_grid.scss +++ b/scss/mixins/_grid.scss @@ -15,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; } } } |
