From 2894d6f7c2c3ded3c45487a374789a6243b4a45a Mon Sep 17 00:00:00 2001 From: Arik Chakma Date: Sun, 17 Aug 2025 14:12:50 +0600 Subject: [PATCH] fix: suggestion menu item font color (#13947) # Before image # After image --- .../src/navigation/menu-item/components/MenuItemSuggestion.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-ui/src/navigation/menu-item/components/MenuItemSuggestion.tsx b/packages/twenty-ui/src/navigation/menu-item/components/MenuItemSuggestion.tsx index d59d446a63..20a69485d5 100644 --- a/packages/twenty-ui/src/navigation/menu-item/components/MenuItemSuggestion.tsx +++ b/packages/twenty-ui/src/navigation/menu-item/components/MenuItemSuggestion.tsx @@ -40,6 +40,7 @@ const StyledSuggestionMenuItem = styled.li<{ background: ${({ selected, theme }) => selected ? theme.background.transparent.medium : ''}; + color: ${({ theme }) => theme.font.color.secondary}; ${HOVER_BACKGROUND};