1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-15 01:16:22 +02:00

fix: flex was breaking change request banner (#2890)

This commit is contained in:
Mateusz Kwasniewski 2023-01-12 16:47:36 +01:00 committed by GitHub
parent 172f911851
commit d4f3e6a819
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ const MainLayoutContainer = styled(Grid)(() => ({
const MainLayoutContentWrapper = styled('main')(({ theme }) => ({
margin: theme.spacing(0, 'auto'),
display: 'flex', // prevent margin collapsing
overflow: 'auto', // prevent margin collapsing
flex: 1,
width: '100%',
backgroundColor: theme.palette.contentWrapper,