diff options
| author | Chris Rebert <[email protected]> | 2016-02-15 23:59:53 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-02-15 23:59:53 -0800 |
| commit | 4278eb57ab1e9c48fb4f465867c38642b6eae0cc (patch) | |
| tree | 7ea9ca07cc634740546ce1b97d6274c0ad9f2405 | |
| parent | 2a2462d25368d378745481f364e5ae1406e69812 (diff) | |
| download | bootstrap-4278eb57ab1e9c48fb4f465867c38642b6eae0cc.tar.xz bootstrap-4278eb57ab1e9c48fb4f465867c38642b6eae0cc.zip | |
Add $small-font-size variable
[skip sauce]
[skip validator]
| -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 107575779..e3be17b22 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 e28b46711..037683555 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; |
