Skip to content

Commit

Permalink
Fixed .card global variable card-bg: from $dark to `$dark-mode-da…
Browse files Browse the repository at this point in the history
…rken`
  • Loading branch information
wangkanai committed Aug 31, 2022
1 parent 459460d commit 88755f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/scss/layout/_dark.scss
Expand Up @@ -18,13 +18,13 @@ body:not(.theme-dark) .hide-theme-light {
--#{$prefix}body-bg: #{$dark-mode-darken};
--#{$prefix}body-bg-rgb: #{to-rgb($dark-mode-darken)};

--#{$prefix}card-bg: #{$dark};
--#{$prefix}card-bg-rgb: #{to-rgb($dark)};
--#{$prefix}card-bg: #{$dark-mode-darken};
--#{$prefix}card-bg-rgb: #{to-rgb($dark-mode-darken)};

--#{$prefix}border-color: #{$dark-mode-border-color};
--#{$prefix}border-color-light: #{$dark-mode-border-color-light};

--#{$prefix}btn-color: #{$dark};
--#{$prefix}btn-color: #{$dark-mode-darken};

color: $dark-mode-text;
background-color: $dark-mode-darken;
Expand Down

0 comments on commit 88755f9

Please sign in to comment.