From c8231d3efde28a1141cafbd74a9dfd98151898ac Mon Sep 17 00:00:00 2001 From: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com> Date: Mon, 24 Jul 2023 16:23:29 +0200 Subject: [PATCH] fix: 404 in dark theme (#4337) ## About the changes Fix 404 error page UI in dark theme --- frontend/src/component/common/NotFound/NotFound.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/common/NotFound/NotFound.tsx b/frontend/src/component/common/NotFound/NotFound.tsx index 6661d7d3e5..2abb6cdd53 100644 --- a/frontend/src/component/common/NotFound/NotFound.tsx +++ b/frontend/src/component/common/NotFound/NotFound.tsx @@ -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%', }));