From 41f56f09cd7793c553477ba286b98ec77331334e Mon Sep 17 00:00:00 2001 From: codecalm Date: Thu, 3 Feb 2022 23:41:59 +0100 Subject: [PATCH] fix: #1010 --- src/scss/ui/_cards.scss | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/scss/ui/_cards.scss b/src/scss/ui/_cards.scss index 00a31b850..5a5f7127b 100644 --- a/src/scss/ui/_cards.scss +++ b/src/scss/ui/_cards.scss @@ -581,9 +581,15 @@ Card list group .nav-link { border-bottom: $card-border-width solid $card-border-color; + border-radius: 0 0 $card-border-radius $card-border-radius; + } - border-top-left-radius: 0; - border-top-right-radius: 0; + &:not(:first-child) .nav-link { + border-bottom-left-radius: 0; + } + + &:not(:last-child) .nav-link { + border-bottom-right-radius: 0; } } }