naive-ui/styles/themes/light/components/Dropdown.scss
2020-02-19 19:58:39 +08:00

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
}