mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
10 lines
410 B
SCSS
10 lines
410 B
SCSS
@mixin setup-dark-base-select-menu {
|
|
$--base-select-menu-item-color: (
|
|
"default": $--n-secondary-text-color,
|
|
"selected": $--n-primary-color,
|
|
"disabled": $--n-disabled-text-color
|
|
) !global;
|
|
$--base-select-menu-background-color: $neutral-5 !global;
|
|
$--base-select-menu-box-shadow: none !global;
|
|
$--base-select-menu-light-bar-background-color: change-color($primary-6, $alpha: .3) !global;
|
|
} |