Minor design fix
This commit is contained in:
parent
ea5bbf5f0a
commit
75876e43da
1 changed files with 18 additions and 16 deletions
|
@ -25,6 +25,7 @@ function Login(props: {
|
||||||
}): JSX.Element {
|
}): JSX.Element {
|
||||||
return (
|
return (
|
||||||
<form className="flex flex-col items-center" onSubmit={props.handleSubmit}>
|
<form className="flex flex-col items-center" onSubmit={props.handleSubmit}>
|
||||||
|
<div className="space-y-3">
|
||||||
<InputField
|
<InputField
|
||||||
type="text"
|
type="text"
|
||||||
label="Username"
|
label="Username"
|
||||||
|
@ -41,6 +42,7 @@ function Login(props: {
|
||||||
}}
|
}}
|
||||||
value={props.password}
|
value={props.password}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
<Button
|
<Button
|
||||||
text="Login"
|
text="Login"
|
||||||
onClick={(): void => {
|
onClick={(): void => {
|
||||||
|
|
Loading…
Reference in a new issue