fix: use shadow for footer

This commit is contained in:
Felix Schröter 2022-11-15 20:42:18 +01:00
parent 6bb26a33b1
commit b60f9004a7
Signed by: felschr
GPG key ID: 671E39E6744C807D

View file

@ -15,9 +15,8 @@ export const Footer = ({ children }: FooterProps) => {
bottom={0}
padding={2}
width="100%"
borderTop={`1px solid ${theme.palette.grey[200].toString()}`}
gap={2}
style={{ backgroundColor: theme.palette.background.default.toString()}}
sx={{ backgroundColor: theme.palette.background.default.toString(), boxShadow: 2 }}
>
{children}
</Box>