UNPKG

301 BSCSSView Raw
1@mixin menu-item-state(
2 $color,
3 $bgColor,
4 $arrowIconColor,
5 $selectedIconColor
6) {
7 color: $color;
8 background-color: $bgColor;
9
10 #{$menu-prefix}-icon-arrow {
11 color: $arrowIconColor;
12 }
13
14 #{$menu-prefix}-icon-selected {
15 color: $selectedIconColor;
16 }
17}