From 6818ca3546b46fffb824402269862aa420d1c5dd Mon Sep 17 00:00:00 2001 From: Jake Laderman Date: Thu, 22 Aug 2024 13:51:57 -0400 Subject: [PATCH] fix: table highlighting and modal fill level --- src/components/Modal.tsx | 4 ++-- src/components/Table.tsx | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) 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} >