mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
11 lines
325 B
SCSS
11 lines
325 B
SCSS
@mixin setup-light-dropdown {
|
|
$--dropdown-item-suffix-fill: $--n-secondary-text-color !global;
|
|
$--dropdown-item-text-color: (
|
|
'hover': $--n-primary-color,
|
|
'selected': $--n-primary-color
|
|
) !global;
|
|
$--dropdown-item-background-color: (
|
|
'selected': change-color($--n-primary-color, $alpha: .1)
|
|
) !global
|
|
}
|