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

feat: fixed full mode navbar width (#8001)

This commit is contained in:
Mateusz Kwasniewski 2024-08-28 11:57:29 +02:00 committed by GitHub
parent 7ad686e14e
commit 3a9b9e9e55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -51,6 +51,7 @@ export const StretchContainer = styled(Box)<{ mode: string }>(
gap: theme.spacing(2),
zIndex: 1,
overflowAnchor: 'none',
minWidth: mode === 'full' ? theme.spacing(40) : 'auto',
width: mode === 'full' ? theme.spacing(40) : 'auto',
}),
);