diff --git a/components/Modal.tsx b/components/Modal.tsx index 0660ed5..4726fd8 100644 --- a/components/Modal.tsx +++ b/components/Modal.tsx @@ -14,6 +14,9 @@ const Modal = ({ children, isOpen, onClose, closeIcon=false, dark, header, full= }} showCloseIcon={closeIcon} styles={{ + closeButton: { + color: dark ? 'white' : 'black' + }, modal: { borderRadius: '10px', background: dark ? '#2C2F33' : '#fbfbfb', @@ -22,7 +25,7 @@ const Modal = ({ children, isOpen, onClose, closeIcon=false, dark, header, full= }, }} > -