Skip to content

Commit 1a52cf4

Browse files
committed
Update auth modal width
1 parent c1224eb commit 1a52cf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/Auth.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const AuthModal = ({ isOpen, onClose, type, onSubmit }) => {
9595
const { handleSubmit, register, errors } = useForm();
9696

9797
return (
98-
<Modal isOpen={isOpen} onClose={onClose} size="400px">
98+
<Modal isOpen={isOpen} onClose={onClose} w="100px">
9999
<ModalOverlay />
100100
<ModalContent borderRadius={4}>
101101
<ModalCloseButton />
@@ -110,7 +110,7 @@ const AuthModal = ({ isOpen, onClose, type, onSubmit }) => {
110110
register={register}
111111
spacing={3}
112112
type={type}
113-
w="100%"
113+
// w="100%"
114114
/>
115115
</Flex>
116116
</ModalBody>

0 commit comments

Comments
 (0)