CSS Bug if $card-border-width: 0;
Created by: endcoreAK
Hey there,
if I set the $card-border-width
to "0",
the output will look like this and ends in an error (at least Chrome):
.card-img { border-radius: calc(0.25rem - 0); }
As a workaround I also had to change:
$card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width});
to
$card-inner-border-radius: $card-border-radius;
Maybe it's possible to fix this (small) issue. :)
Kind regards André