diff options
| author | Steven Black <[email protected]> | 2013-10-04 21:43:31 -0400 |
|---|---|---|
| committer | Steven Black <[email protected]> | 2013-10-04 21:43:31 -0400 |
| commit | 38941881e9a04c2de61be86fd05e5840c93dd1fb (patch) | |
| tree | 9b4a4d7eaa8d171ea540bba637868143c68701e5 /less | |
| parent | 56ee42d335df18d675decc0b67f76757d02ca7e9 (diff) | |
| download | bootstrap-38941881e9a04c2de61be86fd05e5840c93dd1fb.tar.xz bootstrap-38941881e9a04c2de61be86fd05e5840c93dd1fb.zip | |
Jumbotron: remove the hard-coded font-size from jumbotron.less and moved it into variables.less where other .font-size-xxxxx things now live.
Diffstat (limited to 'less')
| -rw-r--r-- | less/jumbotron.less | 2 | ||||
| -rw-r--r-- | less/variables.less | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/less/jumbotron.less b/less/jumbotron.less index 3a2365f05..aadb4acf5 100644 --- a/less/jumbotron.less +++ b/less/jumbotron.less @@ -6,7 +6,7 @@ .jumbotron { padding: @jumbotron-padding; margin-bottom: @jumbotron-padding; - font-size: (@font-size-base * 1.5); + font-size: @font-size-jumbotron; font-weight: 200; line-height: (@line-height-base * 1.5); color: @jumbotron-color; diff --git a/less/variables.less b/less/variables.less index 1a998b946..e611c3a02 100644 --- a/less/variables.less +++ b/less/variables.less @@ -368,8 +368,8 @@ @jumbotron-padding: 30px; @jumbotron-color: inherit; @jumbotron-bg: @gray-lighter; - @jumbotron-heading-color: inherit; +@font-size-jumbotron: ceil(@font-size-base * 1.50); // Form states and alerts |
