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:
parent
bf4346d26c
commit
79147e7196
37
resources/assets/sass/_variables-dark.scss
vendored
37
resources/assets/sass/_variables-dark.scss
vendored
@ -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;
|
||||
|
||||
|
||||
|
@ -19,7 +19,9 @@
|
||||
|
||||
.card {
|
||||
box-shadow: $box-shadow-sm;
|
||||
border: 0;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.card-table {
|
||||
|
Loading…
x
Reference in New Issue
Block a user