diff options
| author | Chris Rebert <[email protected]> | 2016-02-15 23:55:19 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-02-15 23:55:20 -0800 |
| commit | 7441beba67bb2e387e647de5d7f69566565594a8 (patch) | |
| tree | 48054c9307665c4faf3c3ac97cc9244f92211fe6 | |
| parent | 2a2462d25368d378745481f364e5ae1406e69812 (diff) | |
| download | bootstrap-7441beba67bb2e387e647de5d7f69566565594a8.tar.xz bootstrap-7441beba67bb2e387e647de5d7f69566565594a8.zip | |
Add $mark-padding 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..ba476d889 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -66,7 +66,7 @@ small, mark, .mark { - padding: .2em; + padding: $mark-padding; background-color: $state-warning-bg; } diff --git a/scss/_variables.scss b/scss/_variables.scss index e28b46711..4a11547e1 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -205,6 +205,8 @@ $blockquote-border-width: .25rem !default; $hr-border-color: rgba(0,0,0,.1) !default; $hr-border-width: $border-width !default; +$mark-padding: .2em !default; + $dt-font-weight: bold !default; $kbd-box-shadow: inset 0 -.1rem 0 rgba(0,0,0,.25) !default; |
