diff options
| author | Mark Otto <[email protected]> | 2016-02-16 20:23:54 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-02-16 20:23:54 -0800 |
| commit | 853921df324b8aa12929c8f21ebd115128fedeb8 (patch) | |
| tree | d36e8ec066defd83ced6c4fca2c12366169f3a97 | |
| parent | 6636e979d9acf253309aa57c2312ccd59ed46e54 (diff) | |
| parent | 4278eb57ab1e9c48fb4f465867c38642b6eae0cc (diff) | |
| download | bootstrap-853921df324b8aa12929c8f21ebd115128fedeb8.tar.xz bootstrap-853921df324b8aa12929c8f21ebd115128fedeb8.zip | |
Merge pull request #19210 from twbs/small-font-size
Add $small-font-size variable
| -rw-r--r-- | scss/_type.scss | 2 | ||||
| -rw-r--r-- | scss/_variables.scss | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/scss/_type.scss b/scss/_type.scss index 3bb355150..b902a24c1 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -60,7 +60,7 @@ hr { small, .small { - font-size: 80%; + font-size: $small-font-size; font-weight: normal; } diff --git a/scss/_variables.scss b/scss/_variables.scss index 821be6c57..73c401f7a 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -193,6 +193,8 @@ $headings-color: inherit !default; $lead-font-size: 1.25rem !default; $lead-font-weight: 300 !default; +$small-font-size: 80% !default; + $text-muted: $gray-light !default; $abbr-border-color: $gray-light !default; |
