Commit a4c54b5e authored by Mark Otto's avatar Mark Otto

Fixes #11390: Add max-width to containers within jumbotrons to avoid horizontal scrollbar

parent 09cd5289
...@@ -5179,6 +5179,10 @@ a.list-group-item.active > .badge, ...@@ -5179,6 +5179,10 @@ a.list-group-item.active > .badge,
border-radius: 6px; border-radius: 6px;
} }
.jumbotron .container {
max-width: 100%;
}
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.jumbotron { .jumbotron {
padding-top: 48px; padding-top: 48px;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -24,6 +24,10 @@ ...@@ -24,6 +24,10 @@
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
} }
.container {
max-width: 100%;
}
@media screen and (min-width: @screen-sm-min) { @media screen and (min-width: @screen-sm-min) {
padding-top: (@jumbotron-padding * 1.6); padding-top: (@jumbotron-padding * 1.6);
padding-bottom: (@jumbotron-padding * 1.6); padding-bottom: (@jumbotron-padding * 1.6);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment