mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
Fix login modal styling
This commit is contained in:
parent
b701867d7d
commit
1631ce7bf6
1 changed files with 4 additions and 4 deletions
|
|
@ -55,7 +55,7 @@ function LoginForm(props: { setForm: SetState<FormOptions>; setModalOpen: SetSta
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<div className='flex gap-y-2 justify-center flex-col'>
|
||||||
<form method='post' onSubmit={handleSubmit}>
|
<form method='post' onSubmit={handleSubmit}>
|
||||||
<div className='flex gap-x-4'>
|
<div className='flex gap-x-4'>
|
||||||
<div className='flex flex-col'>
|
<div className='flex flex-col'>
|
||||||
|
|
@ -71,8 +71,8 @@ function LoginForm(props: { setForm: SetState<FormOptions>; setModalOpen: SetSta
|
||||||
<input type='password' name='password' className='bg-zinc-200 rounded p-2 mt-2 mb-3 text-black' required />
|
<input type='password' name='password' className='bg-zinc-200 rounded p-2 mt-2 mb-3 text-black' required />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className='mx-auto'>
|
<div className='flex'>
|
||||||
<Button loading={loading} disabled={loading}>
|
<Button loading={loading} disabled={loading} className='mx-auto px-6'>
|
||||||
{m.login()}
|
{m.login()}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -87,7 +87,7 @@ function LoginForm(props: { setForm: SetState<FormOptions>; setModalOpen: SetSta
|
||||||
{m.recoverPassword()}
|
{m.recoverPassword()}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue