- context menu vertical

This commit is contained in:
brendanlaschke
2023-08-10 17:02:47 +02:00
parent be9a2cefeb
commit f2e872ce3f
2 changed files with 42 additions and 8 deletions

View File

@ -27,7 +27,10 @@ const StyledButton = styled.div<StyledButtonProps>`
user-select: none;
&:hover {
background: ${({ theme }) => theme.background.tertiary};
background: ${({ theme, type }) =>
type === 'warning'
? theme.tag.background.red
: theme.background.tertiary};
}
`;