1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-13 13:48:59 +02:00

fix: increase line height for project title (#10158)

Removing overflow hidden did not fix it, also it breaks the overflow.

Line height is by default 1.4, bumped it up to 1.5. This solved it.
This commit is contained in:
Jaanus Sellin 2025-06-18 11:55:26 +03:00 committed by GitHub
parent a1764ebc5e
commit 9b61977d3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,6 +59,7 @@ export const StyledProjectTitle = styled('h1')(({ theme }) => ({
alignItems: 'center',
gap: theme.spacing(2),
overflow: 'hidden',
lineHeight: 1.5,
}));
export const StyledSeparator = styled('div')(({ theme }) => ({