1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

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.
This commit is contained in:
Thomas Heartman 2024-11-20 14:44:07 +01:00 committed by GitHub
parent d661096fb7
commit 640c16fc22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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),
}));