Commit 61e9a01a authored by AndersMad's avatar AndersMad
Browse files

Card fix static -> variable border radius

Changed card border radius image caps to use variable rather than static values
parent 543ce865
Showing with 2 additions and 2 deletions
+2 -2
...@@ -169,10 +169,10 @@ ...@@ -169,10 +169,10 @@
// Card image caps // Card image caps
.card-img-top { .card-img-top {
@include border-radius(.25rem .25rem 0 0); @include border-radius($card-border-radius-inner $card-border-radius-inner 0 0);
} }
.card-img-bottom { .card-img-bottom {
@include border-radius(0 0 .25rem .25rem); @include border-radius(0 0 $card-border-radius-inner $card-border-radius-inner);
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment