From 4f7fa7adcdf9598c94a4806e678b48a1cc5e3da0 Mon Sep 17 00:00:00 2001 From: nitin <142569587+ehconitin@users.noreply.github.com> Date: Wed, 8 Jan 2025 02:33:20 +0530 Subject: [PATCH] Minor active navigation drawer item label font color fix (#9356) fixes https://discord.com/channels/1130383047699738754/1324667162379685972/1324667162379685972 --- .../navigation-drawer/components/NavigationDrawerItem.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerItem.tsx b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerItem.tsx index 2eb117dd7..cfab135f8 100644 --- a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerItem.tsx +++ b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerItem.tsx @@ -133,16 +133,15 @@ const StyledLabelParent = styled.div` text-overflow: clip; `; const StyledEllipsisContainer = styled.div` - color: ${({ theme }) => theme.font.color.light}; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; `; const StyledItemLabel = styled.span` - color: ${({ theme }) => theme.font.color.secondary}; font-weight: ${({ theme }) => theme.font.weight.medium}; `; + const StyledItemObjectName = styled.span` color: ${({ theme }) => theme.font.color.light}; font-weight: ${({ theme }) => theme.font.weight.regular};