Minor active navigation drawer item label font color fix (#9356)

fixes
https://discord.com/channels/1130383047699738754/1324667162379685972/1324667162379685972
This commit is contained in:
nitin
2025-01-08 02:33:20 +05:30
committed by GitHub
parent b006459e73
commit 4f7fa7adcd

View File

@ -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};