Fix a few more CSS values

This commit is contained in:
George Gevoian 2022-09-08 15:04:14 -07:00
parent 965cf7e076
commit 4ee47e9c1d
2 changed files with 2 additions and 2 deletions

View File

@ -499,7 +499,7 @@ export const theme = {
menuShadow: new CustomProp('theme-menu-shadow', undefined, 'rgba(38, 38, 51, 0.6)'),
/* Menu Items */
menuItemFg: new CustomProp('theme-menu-item-fg', undefined, 'unset'),
menuItemFg: new CustomProp('theme-menu-item-fg', undefined, 'black'),
menuItemSelectedFg: new CustomProp('theme-menu-item-selected-fg', undefined, colors.light),
menuItemSelectedBg: new CustomProp('theme-menu-item-selected-bg', undefined, vars.primaryBg),
menuItemDisabledFg: new CustomProp('theme-menu-item-disabled-fg', undefined, '#D9D9D9'),

View File

@ -226,7 +226,7 @@ const cssRemoveButton = styled(cssIcon, `
cursor: pointer;
--icon-color: ${theme.controlSecondaryFg};
&:hover {
--icon-color: ${theme.controlPrimaryFg};
--icon-color: ${theme.controlFg};
}
`);