diff options
| author | Chris Rebert <[email protected]> | 2016-02-16 22:31:40 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-02-16 22:31:40 -0800 |
| commit | 3a4dbd9b3aa4cdcff4ab23605286e7a37c8fae48 (patch) | |
| tree | 2268b07bb22df0f12fe5bf7ef31830a6218acbe7 | |
| parent | 79c955f01921b8ab7b28c18406b01591e80d4703 (diff) | |
| download | bootstrap-3a4dbd9b3aa4cdcff4ab23605286e7a37c8fae48.tar.xz bootstrap-3a4dbd9b3aa4cdcff4ab23605286e7a37c8fae48.zip | |
Add $figure-caption-font-size variable
[skip sauce]
[skip validator]
| -rw-r--r-- | scss/_images.scss | 2 | ||||
| -rw-r--r-- | scss/_variables.scss | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/scss/_images.scss b/scss/_images.scss index 410a09e36..d17006df2 100644 --- a/scss/_images.scss +++ b/scss/_images.scss @@ -47,6 +47,6 @@ } .figure-caption { - font-size: 90%; + font-size: $figure-caption-font-size; color: $gray-light; } diff --git a/scss/_variables.scss b/scss/_variables.scss index c02af45f5..78719df06 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -737,6 +737,11 @@ $thumbnail-border-radius: $border-radius !default; $thumbnail-box-shadow: 0 1px 2px rgba(0,0,0,.075) !default; +// Figures + +$figure-caption-font-size: 90% !default; + + // Breadcrumbs $breadcrumb-padding-y: .75rem !default; |
