Skip to content

Commit

Permalink
Follow up fix for #20667 (#20672)
Browse files Browse the repository at this point in the history
Use proper Sass variable interpolation to ensure the proper values are compiled and not the literal string of the variable name
  • Loading branch information
mdo authored Sep 8, 2016
1 parent a2b3325 commit ed0f097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit ed0f097

Please sign in to comment.