From 83182ad82e19d63e6e6571ba93383217382905db Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 8 May 2016 13:24:45 -0700 Subject: [PATCH] Jank card borders were too janky - Drops the experiment I had going for `box-shadow`-powered borders - Reinstates regular `border` using existing variables Fixes #19097 and #19143. Nullifies #19828. --- scss/_card.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scss/_card.scss b/scss/_card.scss index 856d6c6349..9fad843f7f 100644 --- a/scss/_card.scss +++ b/scss/_card.scss @@ -9,8 +9,7 @@ background-color: $card-bg; // border: $card-border-width solid $card-border-color; @include border-radius($card-border-radius); - // Doesn't use mixin so that cards always have a "border" - box-shadow: inset 0 0 0 $card-border-width $card-border-color; + border: $card-border-width solid $card-border-color; } .card-block {