modify(layout): change back-color to background-color

This commit is contained in:
songwanli2025@163.com 2019-12-31 12:13:21 +08:00
parent 5e2cd427d0
commit 4a402029a3
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
@include themes-mixin {
@include b(layout) {
color: $--layout-text-color;
background-color: $--layout-back-color;
background-color: $--layout-background-color;
@include once {
box-sizing: border-box;
position: relative;

View File

@ -1,6 +1,6 @@
@mixin setup-dark-layout {
$--layout-text-color: $--n-secondary-text-color !global;
$--layout-back-color: $--n-background-color !global;
$--layout-background-color: $--n-background-color !global;
$--layout-header-background-color: $--n-card-color !global;
$--layout-header-border-color: $--n-divider-color !global;
$--layout-footer-border-color: $--n-divider-color !global;

View File

@ -1,6 +1,6 @@
@mixin setup-light-layout {
$--layout-text-color: $--n-secondary-text-color !global;
$--layout-back-color: $--neutral-9 !global;
$--layout-background-color: $--neutral-9 !global;
$--layout-header-background-color: $--n-card-color !global;
$--layout-header-border-color: $--n-divider-color !global;
$--layout-footer-border-color: $--n-divider-color !global;