fixed border color with bg-dark

pull/2197/head
REJack 2019-08-08 14:32:33 +02:00
parent 3d8c88799a
commit 8685cde1b0
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888
2 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,10 @@
@include box-shadow($card-shadow);
&.bg-dark {
.card-header {
border-color: $card-dark-border-color;
}
&,
.card-body {
color: $white;

View File

@ -128,6 +128,7 @@ $control-sidebar-width: $sidebar-width !default;
// Cards
// --------------------------------------------------------
$card-border-color: $gray-100 !default;
$card-dark-border-color: lighten($gray-900, 10%) !default;
$card-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2) !default;
$card-title-font-size: $font-size-lg;
$card-title-font-weight: $font-weight-normal;