diff options
| author | Mark Otto <[email protected]> | 2012-09-01 12:00:13 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-09-01 12:00:13 -0700 |
| commit | 02f6bd65f5cd44b41e49d23ed7e6a068a04805a6 (patch) | |
| tree | d2499d3688fe03cf612e8124b30d19b32a251a77 | |
| parent | e8c5b3c9a518c58d16558a711dcd4843b26548de (diff) | |
| download | bootstrap-02f6bd65f5cd44b41e49d23ed7e6a068a04805a6.tar.xz bootstrap-02f6bd65f5cd44b41e49d23ed7e6a068a04805a6.zip | |
fixes #4910: use @baseLineHeight * 1.5 for .lead font-size
| -rw-r--r-- | docs/assets/css/bootstrap.css | 2 | ||||
| -rw-r--r-- | less/type.less | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index c8ea594dc..c0e1988ac 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -584,7 +584,7 @@ p { .lead { margin-bottom: 20px; - font-size: 20px; + font-size: 30px; font-weight: 200; line-height: 30px; } diff --git a/less/type.less b/less/type.less index 14f65f2fa..0afb864cc 100644 --- a/less/type.less +++ b/less/type.less @@ -11,7 +11,7 @@ p { } .lead { margin-bottom: @baseLineHeight; - font-size: 20px; + font-size: @baseLineHeight * 1.5; font-weight: 200; line-height: @baseLineHeight * 1.5; } |
