From ce6214d6eff1318fbe0a4e2be04a8361a732f8ff Mon Sep 17 00:00:00 2001 From: Andrey Kud Date: Thu, 21 Dec 2023 17:36:21 -0300 Subject: [PATCH] Object name font-weight in Data Model Settings (#3115) * fix: make name bolder * chore: fix lint --- .../object-details/components/SettingsObjectAboutSection.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/settings/data-model/object-details/components/SettingsObjectAboutSection.tsx b/packages/twenty-front/src/modules/settings/data-model/object-details/components/SettingsObjectAboutSection.tsx index cf84ccc10..d11216e41 100644 --- a/packages/twenty-front/src/modules/settings/data-model/object-details/components/SettingsObjectAboutSection.tsx +++ b/packages/twenty-front/src/modules/settings/data-model/object-details/components/SettingsObjectAboutSection.tsx @@ -34,6 +34,7 @@ const StyledCardContent = styled(CardContent)` const StyledName = styled.div` color: ${({ theme }) => theme.font.color.primary}; display: flex; + font-weight: ${({ theme }) => theme.font.weight.medium}; gap: ${({ theme }) => theme.spacing(2)}; margin-right: auto; `;