Object name font-weight in Data Model Settings (#3115)

* fix: make name bolder

* chore: fix lint
This commit is contained in:
Andrey Kud
2023-12-21 17:36:21 -03:00
committed by GitHub
parent de3d955040
commit ce6214d6ef

View File

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