]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Card fix static -> variable border radius 18093/head
authorAndersMad <thisisafish@gmail.com>
Wed, 28 Oct 2015 20:54:56 +0000 (21:54 +0100)
committerAndersMad <thisisafish@gmail.com>
Wed, 28 Oct 2015 20:54:56 +0000 (21:54 +0100)
Changed card border radius image caps to use variable rather than static values

scss/_card.scss

index aff6036a08dc4bdc3a7bcc65efb002bc7eefcd8c..66851eb2bcf8efa23bd92a30abb9d37c0d7e1cd7 100644 (file)
 
 // Card image caps
 .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 {
-  @include border-radius(0 0 .25rem .25rem);
+  @include border-radius(0 0 $card-border-radius-inner $card-border-radius-inner);
 }