From: Mark Otto Date: Sun, 2 Sep 2012 20:25:03 +0000 (-0700) Subject: fixes #4922: use basefontsize for realz on .lead X-Git-Tag: v2.1.1~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=37379048599c1ce93aa2f36df46afbc09cb6d19b;p=thirdparty%2Fbootstrap.git fixes #4922: use basefontsize for realz on .lead --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index c0e1988aca..d64ff51ab9 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -584,7 +584,7 @@ p { .lead { margin-bottom: 20px; - font-size: 30px; + font-size: 21px; font-weight: 200; line-height: 30px; } diff --git a/less/type.less b/less/type.less index 0afb864ccd..669c55fd59 100644 --- a/less/type.less +++ b/less/type.less @@ -11,7 +11,7 @@ p { } .lead { margin-bottom: @baseLineHeight; - font-size: @baseLineHeight * 1.5; + font-size: @baseFontSize * 1.5; font-weight: 200; line-height: @baseLineHeight * 1.5; }