From 640c16fc220121f836661421558d853c9142282a Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Wed, 20 Nov 2024 14:44:07 +0100 Subject: [PATCH] fix: center health widgets and text (#8810) This change updates how the health widgets are aligned with their text. They used to be aligned towards the top; now, they're centered. --- .../component/project/Project/ProjectStatus/ProjectHealth.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/project/Project/ProjectStatus/ProjectHealth.tsx b/frontend/src/component/project/Project/ProjectStatus/ProjectHealth.tsx index 8c2250399c..bcfcf1b942 100644 --- a/frontend/src/component/project/Project/ProjectStatus/ProjectHealth.tsx +++ b/frontend/src/component/project/Project/ProjectStatus/ProjectHealth.tsx @@ -19,7 +19,7 @@ const TextContainer = styled('div')(({ theme }) => ({ const ChartRow = styled('div')(({ theme }) => ({ display: 'flex', - alignItems: 'flex-start', + alignItems: 'center', gap: theme.spacing(2), }));