The media query for .container seems to be broken.
The SCSS is being compiled as
@media (min-width: 550px)
.container {
width: 750px;
}
and the width is greater than the min-width which is pushing content off the page as you approach the min-width.
In _overrides.scss, $container-sm is set differently but $screen-sm-min seems to be the same.
Why was the width changed from stock bootstrap?
The media query for
.containerseems to be broken.The SCSS is being compiled as
and the
widthis greater than themin-widthwhich is pushing content off the page as you approach themin-width.In
_overrides.scss,$container-smis set differently but$screen-sm-minseems to be the same.Why was the width changed from stock bootstrap?