diff --git a/src/components/Modal.tsx b/src/components/Modal.tsx index dff8dec7..45f593cd 100644 --- a/src/components/Modal.tsx +++ b/src/components/Modal.tsx @@ -79,14 +79,13 @@ const sizeToWidth = { const ModalSC = styled(Card)<{ $width: number $maxWidth: number -}>(({ theme, $width, $maxWidth }) => ({ +}>(({ $width, $maxWidth }) => ({ position: 'relative', display: 'flex', flexDirection: 'column', height: '100%', width: $width, maxWidth: $maxWidth, - backgroundColor: theme.colors['fill-one'], })) const ModalContentSC = styled.div<{ @@ -186,6 +185,7 @@ function ModalRef( {...props} >