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"
target="_blank"
>
<span>Powered by Trading View</span>
<span>Powered by TradingView</span>
</a>
) : null}
<a

View File

@ -15,7 +15,7 @@ const CreateAccountModal = ({ isOpen, onClose }: ModalProps) => {
return (
<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} />
</div>
</Modal>