Commit 52aa67fa authored by Mark Otto's avatar Mark Otto

only round jumbotron corners at 768px+

parent b02a0fe7
...@@ -4423,7 +4423,6 @@ a.counter:hover { ...@@ -4423,7 +4423,6 @@ a.counter:hover {
line-height: 30px; line-height: 30px;
color: inherit; color: inherit;
background-color: #eeeeee; background-color: #eeeeee;
border-radius: 6px;
} }
.jumbotron h1 { .jumbotron h1 {
...@@ -4438,6 +4437,7 @@ a.counter:hover { ...@@ -4438,6 +4437,7 @@ a.counter:hover {
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.jumbotron { .jumbotron {
padding: 50px 60px; padding: 50px 60px;
border-radius: 6px;
} }
.jumbotron h1 { .jumbotron h1 {
font-size: 60px; font-size: 60px;
......
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
line-height: @line-height-base * 1.5; line-height: @line-height-base * 1.5;
color: @jumbotron-lead-color; color: @jumbotron-lead-color;
background-color: @jumbotron-background; background-color: @jumbotron-background;
border-radius: 6px;
h1 { h1 {
line-height: 1; line-height: 1;
color: @jumbotron-heading-color; color: @jumbotron-heading-color;
...@@ -24,6 +23,7 @@ ...@@ -24,6 +23,7 @@
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.jumbotron { .jumbotron {
padding: 50px 60px; padding: 50px 60px;
border-radius: 6px; // Only round corners at higher resolutions
h1 { h1 {
font-size: 60px; font-size: 60px;
......
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