1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-02-24 11:13:02 +01:00

Minor fix for dark-mode card borders and variables

This commit is contained in:
Kovah 2020-04-19 15:36:08 +02:00
parent bf4346d26c
commit 79147e7196
No known key found for this signature in database
GPG Key ID: AAAA031BA9830D7B
2 changed files with 39 additions and 2 deletions

View File

@ -11,7 +11,7 @@ $gray-800: #3A3F44;
$gray-900: #272B30;
$black: #000;
$blue: #2F405A;
$blue: #44679F;
$red: #ee5f5b;
$orange: #fd7e14;
$yellow: #f89406;
@ -28,6 +28,41 @@ $danger: $red;
$light: $gray-200;
$dark: $gray-900;
$colors: ();
$colors: map-merge(
(
"blue": $blue,
"indigo": $indigo,
"purple": $purple,
"pink": $pink,
"red": $red,
"orange": $orange,
"yellow": $yellow,
"green": $green,
"teal": $teal,
"cyan": $cyan,
"white": $white,
"gray": $gray-600,
"gray-dark": $gray-800
),
$colors
);
$theme-colors: ();
$theme-colors: map-merge(
(
"primary": $primary,
"secondary": $secondary,
"success": $success,
"info": $info,
"warning": $warning,
"danger": $danger,
"light": $light,
"dark": $dark
),
$theme-colors
);
$yiq-contrasted-threshold: 170;

View File

@ -19,7 +19,9 @@
.card {
box-shadow: $box-shadow-sm;
border: 0;
border-left: 0;
border-right: 0;
border-color: transparent;
}
.card-table {