diff options
| author | Mark Otto <[email protected]> | 2016-10-09 13:17:50 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-10-09 13:17:50 -0700 |
| commit | 0d27e12d1f2773fb672513fbd025ac3f07e47660 (patch) | |
| tree | b7bb29866668e51254f6fdc687d42dcbf91c9a89 | |
| parent | a43dc8872fb0e4a726424e1471972d94993539c5 (diff) | |
| download | bootstrap-0d27e12d1f2773fb672513fbd025ac3f07e47660.tar.xz bootstrap-0d27e12d1f2773fb672513fbd025ac3f07e47660.zip | |
Change sm grid breakpoint and container max-width
Makes it so that the container is no longer wider than the breakpoint used in the media query. This was never really an issue in rendering as the max-width handled it appropriately, but the mismatch was still incorrect.
Fixes #18054
| -rw-r--r-- | scss/_variables.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss index 52bd0eb81..9f6823978 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -125,7 +125,7 @@ $link-hover-decoration: underline !default; $grid-breakpoints: ( xs: 0, - sm: 544px, + sm: 576px, md: 768px, lg: 992px, xl: 1200px @@ -138,7 +138,7 @@ $grid-breakpoints: ( // Define the maximum width of `.container` for different screen sizes. $container-max-widths: ( - sm: 576px, + sm: 540px, md: 720px, lg: 940px, xl: 1140px |
