0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

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
This commit is contained in:
Mark Otto 2016-09-07 21:25:14 -07:00 committed by GitHub
parent a2b33257fc
commit ed0f097cb8

View File

@ -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;