aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndersMad <[email protected]>2015-10-28 21:54:56 +0100
committerAndersMad <[email protected]>2015-10-28 21:54:56 +0100
commit61e9a01a28a0d59cd426bc2edeead279ca75a41a (patch)
tree69efd2f5dfe446c3f317b59e8b55b65e979d3ece
parent543ce8656807d75c131453cc43bf085cddf763ae (diff)
downloadbootstrap-61e9a01a28a0d59cd426bc2edeead279ca75a41a.tar.xz
bootstrap-61e9a01a28a0d59cd426bc2edeead279ca75a41a.zip
Card fix static -> variable border radius
Changed card border radius image caps to use variable rather than static values
-rw-r--r--scss/_card.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_card.scss b/scss/_card.scss
index aff6036a0..66851eb2b 100644
--- a/scss/_card.scss
+++ b/scss/_card.scss
@@ -169,10 +169,10 @@
// 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);
}