mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-06 10:27:22 +00:00
18 lines
301 B
SCSS
18 lines
301 B
SCSS
@mixin menu-item-state(
|
|
$color,
|
|
$bgColor,
|
|
$arrowIconColor,
|
|
$selectedIconColor
|
|
) {
|
|
color: $color;
|
|
background-color: $bgColor;
|
|
|
|
#{$menu-prefix}-icon-arrow {
|
|
color: $arrowIconColor;
|
|
}
|
|
|
|
#{$menu-prefix}-icon-selected {
|
|
color: $selectedIconColor;
|
|
}
|
|
}
|