Skip to content

Commit

Permalink
style: add default monospace font to font-family in the entity tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
robscriva committed Nov 19, 2021
1 parent a36fefa commit a735fd1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -16,7 +16,7 @@ const StatSection = styled.div`
`;

const NameText = styled(Typography.Text)`
font-family: 'Roboto Mono';
font-family: 'Roboto Mono', monospace;
font-weight: 600;
font-size: 12px;
color: ${ANTD_GRAY[9]};
Expand Down
Expand Up @@ -7,14 +7,14 @@ import { StyledTable } from '../../components/styled/StyledTable';
import { useEntityData } from '../../EntityContext';

const NameText = styled(Typography.Text)`
font-family: 'Roboto Mono';
font-family: 'Roboto Mono', monospace;
font-weight: 600;
font-size: 12px;
color: ${ANTD_GRAY[9]};
`;

const ValueText = styled(Typography.Text)`
font-family: 'Roboto Mono';
font-family: 'Roboto Mono', monospace;
font-weight: 400;
font-size: 12px;
color: ${ANTD_GRAY[8]};
Expand Down

0 comments on commit a735fd1

Please sign in to comment.