From 0e720527bdbb0835ab3a6082d2fe747b7d87909b Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Tue, 31 May 2022 13:28:07 -0400 Subject: [PATCH] fix(striker-ui): fill Panel with fake paper --- striker-ui/components/Panels/Panel.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/striker-ui/components/Panels/Panel.tsx b/striker-ui/components/Panels/Panel.tsx index 3dc02703..804966a8 100644 --- a/striker-ui/components/Panels/Panel.tsx +++ b/striker-ui/components/Panels/Panel.tsx @@ -20,9 +20,12 @@ const StyledBox = styled(Box)(() => ({ position: 'relative', [`& .${classes.paper}`]: { - padding: '2.1em', backgroundColor: PANEL_BACKGROUND, + height: '100%', opacity: 0.8, + padding: '2.1em', + position: 'relative', + width: '100%', zIndex: 999, },