Skip to content

Commit c210c3d

Browse files
committed
Follow up fix for #20667
Use proper Sass variable interpolation to ensure the proper values are compiled and not the literal string of the variable name
1 parent a2b3325 commit c210c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scss/_variables.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ $card-spacer-y: .75rem !default;
581581
$card-border-width: 1px !default;
582582
$card-border-radius: $border-radius !default;
583583
$card-border-color: rgba(0,0,0,.125) !default;
584-
$card-border-radius-inner: calc($card-border-radius - 1px) !default;
584+
$card-border-radius-inner: calc(#{$card-border-radius} - #{$card-border-width}) !default;
585585
$card-cap-bg: #f5f5f5 !default;
586586
$card-bg: #fff !default;
587587

0 commit comments

Comments
 (0)