From 019c2b11d5f7f17e825958d51a2e1f8b0e13b123 Mon Sep 17 00:00:00 2001 From: wonderlandpark Date: Mon, 8 Mar 2021 21:31:21 +0900 Subject: [PATCH] chore: full modal width decreased --- components/Modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Modal.tsx b/components/Modal.tsx index 36557b7..aa7bff6 100644 --- a/components/Modal.tsx +++ b/components/Modal.tsx @@ -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' }, }} >