1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: 404 in dark theme (#4337)

## About the changes
Fix 404 error page UI in dark theme
This commit is contained in:
Tymoteusz Czech 2023-07-24 16:23:29 +02:00 committed by GitHub
parent 041c06560c
commit c8231d3efd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ const StyledContainer = styled('div')(({ theme }) => ({
padding: theme.spacing(4),
position: 'fixed',
inset: 0,
backgroundColor: theme.palette.primary.contrastText,
backgroundColor: theme.palette.background.paper,
width: '100%',
}));