Skip to content

Commit bd67f32

Browse files
committed
Fix font sizes on new integrations page (#4959)
1 parent cbd33d6 commit bd67f32

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ The types of changes are:
4747
- Fixed an issue where language form field error message was not displaying properly [#4942](https://github.com/ethyca/fides/pull/4942)
4848
- Fixed an issue where the consent cookie could not be set on multi-level root domain (e.g. co.uk, co.jp) [#4935](https://github.com/ethyca/fides/pull/4935)
4949
- Fixed an issue where the unique device ID was not being retained when Fides.js was reinitialized [#4947](https://github.com/ethyca/fides/pull/4947)
50+
- Fixed inconsistent font sizes on new integrations UI [#4959](https://github.com/ethyca/fides/pull/4959)
5051

5152
## [2.37.0](https://github.com/ethyca/fides/compare/2.36.0...2.37.0)
5253

clients/admin-ui/src/features/integrations/NoIntegrations.tsx

+9-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,21 @@ import { Button, Flex, Text } from "fidesui";
22

33
const NoIntegrations = ({ onOpenAddModal }: { onOpenAddModal: () => void }) => (
44
<Flex direction="column" alignItems="center" data-testid="empty-state">
5-
<Text color="gray.700" fontWeight="semibold" fontSize="xl">
5+
<Text color="gray.700" fontWeight="semibold" fontSize="md">
66
No integrations
77
</Text>
8-
<Text color="gray.700" marginTop="8px">
8+
<Text color="gray.700" fontSize="sm" marginTop="8px">
99
You have not configured any integrations
1010
</Text>
11-
<Text color="gray.700">
11+
<Text color="gray.700" fontSize="sm">
1212
Click &quot;Add integration&quot; to connect and configure systems now.
1313
</Text>
14-
<Button variant="primary" marginTop="16px" onClick={onOpenAddModal}>
14+
<Button
15+
variant="primary"
16+
size="sm"
17+
marginTop="16px"
18+
onClick={onOpenAddModal}
19+
>
1520
Add integration
1621
</Button>
1722
</Flex>

clients/admin-ui/src/features/integrations/configure-monitor/MonitorConfigTab.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ const MonitorConfigTab = ({
179179

180180
return (
181181
<>
182-
<Text maxW="720px" mb={6}>
182+
<Text maxW="720px" mb={6} fontSize="sm">
183183
Data discovery monitors observe configured systems for data model
184184
changes to proactively discover and classify data risks. You can create
185185
multiple monitors to observe part or all of a project, dataset, table or

0 commit comments

Comments
 (0)