diff --git a/datahub-web-react/src/app/entity/shared/tabs/Dataset/Stats/snapshot/ColumnStats.tsx b/datahub-web-react/src/app/entity/shared/tabs/Dataset/Stats/snapshot/ColumnStats.tsx index 0376712723306..f6637a507c8a1 100644 --- a/datahub-web-react/src/app/entity/shared/tabs/Dataset/Stats/snapshot/ColumnStats.tsx +++ b/datahub-web-react/src/app/entity/shared/tabs/Dataset/Stats/snapshot/ColumnStats.tsx @@ -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]}; diff --git a/datahub-web-react/src/app/entity/shared/tabs/Properties/PropertiesTab.tsx b/datahub-web-react/src/app/entity/shared/tabs/Properties/PropertiesTab.tsx index 3e140909dd82c..277096e1c09cb 100644 --- a/datahub-web-react/src/app/entity/shared/tabs/Properties/PropertiesTab.tsx +++ b/datahub-web-react/src/app/entity/shared/tabs/Properties/PropertiesTab.tsx @@ -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]};