diff options
| author | Mark Otto <[email protected]> | 2013-01-31 18:11:45 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-01-31 18:11:45 -0800 |
| commit | 52aa67fa1c539aa9b31f3d9cf349287ab5c06120 (patch) | |
| tree | 696d809b7695ff77523bb84eaf74d2729ac91ff2 | |
| parent | b02a0fe768e3703fe889953d9e9d26dae25bc074 (diff) | |
| download | bootstrap-52aa67fa1c539aa9b31f3d9cf349287ab5c06120.tar.xz bootstrap-52aa67fa1c539aa9b31f3d9cf349287ab5c06120.zip | |
only round jumbotron corners at 768px+
| -rw-r--r-- | docs/assets/css/bootstrap.css | 2 | ||||
| -rw-r--r-- | less/jumbotron.less | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index ebca6a630..d534985d9 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -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; diff --git a/less/jumbotron.less b/less/jumbotron.less index 18de623fd..ebe9bd971 100644 --- a/less/jumbotron.less +++ b/less/jumbotron.less @@ -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; |
