diff options
| author | Chris Rebert <[email protected]> | 2015-03-25 22:39:55 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-03-25 22:39:55 -0700 |
| commit | cf0f3218cbf695a625a42e4b9865b75c21eb2847 (patch) | |
| tree | 2f61393c49d89ed5d9d76e5dae31fdf678e53696 | |
| parent | 087c68bd8597939a93210dc7ea1503d6901e3aab (diff) | |
| parent | 9558211c8c5f345eb7f678c76a3dee3da51745e9 (diff) | |
| download | bootstrap-cf0f3218cbf695a625a42e4b9865b75c21eb2847.tar.xz bootstrap-cf0f3218cbf695a625a42e4b9865b75c21eb2847.zip | |
Merge pull request #16089 from max-b/jumbotron-font-size
Jumbotron: Putting heading font size in variables to allow for easier overrides
| -rw-r--r-- | less/jumbotron.less | 2 | ||||
| -rw-r--r-- | less/variables.less | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/less/jumbotron.less b/less/jumbotron.less index 93036d3c9..fb4415bdc 100644 --- a/less/jumbotron.less +++ b/less/jumbotron.less @@ -44,7 +44,7 @@ h1, .h1 { - font-size: (@font-size-base * 4.5); + font-size: @jumbotron-heading-font-size; } } } diff --git a/less/variables.less b/less/variables.less index b5fb9d02c..dd3c102ab 100644 --- a/less/variables.less +++ b/less/variables.less @@ -484,6 +484,7 @@ @jumbotron-bg: @gray-lighter; @jumbotron-heading-color: inherit; @jumbotron-font-size: ceil((@font-size-base * 1.5)); +@jumbotron-heading-font-size: ceil((@font-size-base * 4.5)); //== Form states and alerts |
