2980-Fix: CommandGroup background (#2985)
* 2980-fix: CommandGroup background * Box Shadow fix * suggested color fixes * Fix related to design dicussion: add border + make everything background secondary --------- Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
@ -31,7 +31,9 @@ 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.primary};
|
||||
isSelected
|
||||
? theme.background.transparent.light
|
||||
: theme.background.secondary};
|
||||
border-radius: ${({ theme }) => theme.border.radius.sm};
|
||||
color: ${({ theme }) => theme.font.color.secondary};
|
||||
cursor: pointer;
|
||||
|
||||
Reference in New Issue
Block a user