Skip to content

Commit

Permalink
chore: Update SignupPage layout
Browse files Browse the repository at this point in the history
The SignupPage component layout has been updated to improve the alignment of its elements.
  • Loading branch information
williamsimionatto committed May 9, 2024
1 parent 187dbaa commit dffae1b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/pages/SignupPage/Signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,11 @@ export default function SignupPage() {
}) as SubmitHandler<FieldValues>;

return (
<div className="bg-neutral-95">
<PageHeader title="Cadastro" backButton={true}></PageHeader>
<>
<div className="p-s-100">
<PageHeader title="Cadastro" backButton={true}></PageHeader>
</div>

<div
className="d-flex justify-center p-s-300"
style={{ height: '100vh' }}
Expand Down Expand Up @@ -137,14 +140,14 @@ export default function SignupPage() {
<Button
type="submit"
isLoading={isLoadingRequest}
className="!w-100 mb-s-200"
className="!w-100 mt-s-200"
alignText="center"
>
Cadastrar
</Button>
</form>
</div>
</div>
</div>
</>
);
}

0 comments on commit dffae1b

Please sign in to comment.