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:
parent
a1764ebc5e
commit
9b61977d3e
@ -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 }) => ({
|
||||
|
Loading…
Reference in New Issue
Block a user