fix create account modal height

This commit is contained in:
saml33 2023-09-13 15:19:10 +10:00
parent 42ed62a2ec
commit b7b1adc605
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ const StatusBar = ({ collapsed }: { collapsed: boolean }) => {
rel="noreferrer noopener" rel="noreferrer noopener"
target="_blank" target="_blank"
> >
<span>Powered by Trading View</span> <span>Powered by TradingView</span>
</a> </a>
) : null} ) : null}
<a <a

View File

@ -15,7 +15,7 @@ const CreateAccountModal = ({ isOpen, onClose }: ModalProps) => {
return ( return (
<Modal isOpen={isOpen} onClose={onClose}> <Modal isOpen={isOpen} onClose={onClose}>
<div className="flex min-h-[400px] flex-col items-center justify-center"> <div className="flex min-h-[338px] flex-col justify-between">
<CreateAccountForm customClose={handleClose} /> <CreateAccountForm customClose={handleClose} />
</div> </div>
</Modal> </Modal>