Skip to content

Commit

Permalink
fix: set properly background color to full screen modal
Browse files Browse the repository at this point in the history
  • Loading branch information
MateuszRostkowski committed Apr 8, 2024
1 parent dad6a3e commit c4a929f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/design-system/modals/FullScreenModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const FullScreenModal = ({ children, modalRef, ...rest }: Props) => {
visible={isOpen}
onRequestClose={setIsOpen.off}
>
<Box bg="bg.brand.primary" w="100%" height="100%">
<Box bg="bg.primary" w="100%" height="100%">
{children}
</Box>
</Modal>
Expand Down

0 comments on commit c4a929f

Please sign in to comment.