Commit 8fbb2bbb authored by Mark Otto's avatar Mark Otto

Fixes #14979: Override .jumbotron padding within .container-fluid to match .container

parent 2862c303
...@@ -4675,7 +4675,8 @@ a.list-group-item.active > .badge, ...@@ -4675,7 +4675,8 @@ a.list-group-item.active > .badge,
.jumbotron { .jumbotron {
padding: 48px 0; padding: 48px 0;
} }
.container .jumbotron { .container .jumbotron,
.container-fluid .jumbotron {
padding-right: 60px; padding-right: 60px;
padding-left: 60px; padding-left: 60px;
} }
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This diff is collapsed.
...@@ -4675,7 +4675,8 @@ a.list-group-item.active > .badge, ...@@ -4675,7 +4675,8 @@ a.list-group-item.active > .badge,
.jumbotron { .jumbotron {
padding: 48px 0; padding: 48px 0;
} }
.container .jumbotron { .container .jumbotron,
.container-fluid .jumbotron {
padding-right: 60px; padding-right: 60px;
padding-left: 60px; padding-left: 60px;
} }
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -35,7 +35,8 @@ ...@@ -35,7 +35,8 @@
@media screen and (min-width: @screen-sm-min) { @media screen and (min-width: @screen-sm-min) {
padding: (@jumbotron-padding * 1.6) 0; padding: (@jumbotron-padding * 1.6) 0;
.container & { .container &,
.container-fluid & {
padding-left: (@jumbotron-padding * 2); padding-left: (@jumbotron-padding * 2);
padding-right: (@jumbotron-padding * 2); padding-right: (@jumbotron-padding * 2);
} }
......
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