From 9b61977d3e6c867299c0744cce70cf969dd649eb Mon Sep 17 00:00:00 2001 From: Jaanus Sellin Date: Wed, 18 Jun 2025 11:55:26 +0300 Subject: [PATCH] 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. --- frontend/src/component/project/Project/Project.styles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/component/project/Project/Project.styles.ts b/frontend/src/component/project/Project/Project.styles.ts index 95265cd284..fc5bc927fa 100644 --- a/frontend/src/component/project/Project/Project.styles.ts +++ b/frontend/src/component/project/Project/Project.styles.ts @@ -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 }) => ({