mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
only round jumbotron corners at 768px+
This commit is contained in:
parent
b02a0fe768
commit
52aa67fa1c
2 changed files with 2 additions and 2 deletions
2
docs/assets/css/bootstrap.css
vendored
2
docs/assets/css/bootstrap.css
vendored
|
@ -4423,7 +4423,6 @@ a.counter:hover {
|
|||
line-height: 30px;
|
||||
color: inherit;
|
||||
background-color: #eeeeee;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.jumbotron h1 {
|
||||
|
@ -4438,6 +4437,7 @@ a.counter:hover {
|
|||
@media screen and (min-width: 768px) {
|
||||
.jumbotron {
|
||||
padding: 50px 60px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.jumbotron h1 {
|
||||
font-size: 60px;
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
line-height: @line-height-base * 1.5;
|
||||
color: @jumbotron-lead-color;
|
||||
background-color: @jumbotron-background;
|
||||
border-radius: 6px;
|
||||
h1 {
|
||||
line-height: 1;
|
||||
color: @jumbotron-heading-color;
|
||||
|
@ -24,6 +23,7 @@
|
|||
@media screen and (min-width: 768px) {
|
||||
.jumbotron {
|
||||
padding: 50px 60px;
|
||||
border-radius: 6px; // Only round corners at higher resolutions
|
||||
|
||||
h1 {
|
||||
font-size: 60px;
|
||||
|
|
Loading…
Add table
Reference in a new issue