fix: fix background not changing on hover in extra menu on sort popup

This commit is contained in:
Jordan Knott 2021-01-03 17:11:08 -06:00
parent f051bebd48
commit f215418be1
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ export const ActionExtraMenuItem = styled.li`
align-items: center;
font-size: 14px;
&:hover {
background: rgb(${props => props.theme.colors.primary});
background: ${props => props.theme.colors.primary};
}
`;
const ActionExtraMenuSeparator = styled.li`

View File

@ -69,7 +69,7 @@ export const ActionExtraMenuItem = styled.li`
align-items: center;
font-size: 14px;
&:hover {
background: rgb(${props => props.theme.colors.primary});
background: ${props => props.theme.colors.primary};
}
`;
const ActionExtraMenuSeparator = styled.li`