diff options
| author | Mark Otto <[email protected]> | 2015-11-12 23:56:45 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-11-12 23:56:45 -0800 |
| commit | 0aec084caeb91d0697723c4edf3afb5db706a107 (patch) | |
| tree | e3ceca8560f93feeb77feeaab11ddcb863ac370d | |
| parent | cbb5e2548263edcf904d75ad06747b7e69834fc8 (diff) | |
| parent | 61e9a01a28a0d59cd426bc2edeead279ca75a41a (diff) | |
| download | bootstrap-0aec084caeb91d0697723c4edf3afb5db706a107.tar.xz bootstrap-0aec084caeb91d0697723c4edf3afb5db706a107.zip | |
Merge pull request #18093 from AndersMad/patch-1
Card fix static -> variable border radius
| -rw-r--r-- | scss/_card.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_card.scss b/scss/_card.scss index cab7b65e3..1f7e04e1e 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); } |
