chore: full modal width decreased

This commit is contained in:
wonderlandpark 2021-03-08 21:31:21 +09:00
parent 6924e87893
commit 019c2b11d5

View File

@ -18,7 +18,7 @@ const Modal = ({ children, isOpen, onClose, dark, header, full=false }: ModalPro
borderRadius: '10px',
background: dark ? '#2C2F33' : '#fbfbfb',
color: dark ? 'white' : 'black',
width: full ? '100%' : 'inherit'
width: full ? '90%' : 'inherit'
},
}}
>