Fix design for select action (#9857)

as title 
fixes
https://discord.com/channels/1130383047699738754/1330945172489371771
This commit is contained in:
martmull
2025-01-27 13:29:04 +01:00
committed by GitHub
parent fb0b342374
commit c1e84a746c
2 changed files with 4 additions and 6 deletions

View File

@ -32,9 +32,7 @@ const StyledMenuItemCommandContainer = styled.div<{ isSelected?: boolean }>`
--vertical-padding: ${({ theme }) => theme.spacing(2)};
align-items: center;
background: ${({ isSelected, theme }) =>
isSelected
? theme.background.transparent.light
: theme.background.secondary};
isSelected ? theme.background.transparent.light : 'transparent'};
border-radius: ${({ theme }) => theme.border.radius.sm};
color: ${({ theme }) => theme.font.color.secondary};
cursor: pointer;