diff options
| author | Mark Otto <[email protected]> | 2016-09-07 21:25:14 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2016-09-07 21:25:14 -0700 |
| commit | ed0f097cb8f682570bf91fbd4aacf38cf54f84cd (patch) | |
| tree | ed941c24949826208521b2d2404722b3b0fcf3f3 | |
| parent | a2b33257fc713c1d396fdd3efd7ada3d13a7316c (diff) | |
| download | bootstrap-ed0f097cb8f682570bf91fbd4aacf38cf54f84cd.tar.xz bootstrap-ed0f097cb8f682570bf91fbd4aacf38cf54f84cd.zip | |
Follow up fix for #20667 (#20672)
Use proper Sass variable interpolation to ensure the proper values are compiled and not the literal string of the variable name
| -rw-r--r-- | scss/_variables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss index c8cdbb104..db9c202ff 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -581,7 +581,7 @@ $card-spacer-y: .75rem !default; $card-border-width: 1px !default; $card-border-radius: $border-radius !default; $card-border-color: rgba(0,0,0,.125) !default; -$card-border-radius-inner: calc($card-border-radius - 1px) !default; +$card-border-radius-inner: calc(#{$card-border-radius} - #{$card-border-width}) !default; $card-cap-bg: #f5f5f5 !default; $card-bg: #fff !default; |
