Skip to content

Commit

Permalink
fix: signin, signup max width 지정
Browse files Browse the repository at this point in the history
  • Loading branch information
esthel7 committed Jul 23, 2024
1 parent dcc0413 commit 119cf64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/signin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default function SignInPage() {
const reset = () => setWarning(false);

return (
<div className="flex flex-col p-8 gap-4 items-center">
<div className="flex flex-col p-8 gap-4 items-center w-full max-w-2xl mx-auto">
<Image src="/img/testPhoto.jpg" alt="logo" width={150} height={150} />
<h2 className="text-2xl font-bold">Sign in</h2>

Expand Down
4 changes: 2 additions & 2 deletions app/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ export default function SignUpPage() {
};

return (
<div className="flex flex-col p-8 gap-4 items-center">
<h2 className="text-2xl font-bold">Sign Up</h2>
<div className="flex flex-col p-8 gap-4 items-center w-full max-w-2xl mx-auto">
<h2 className="text-2xl font-bold pt-10">Sign Up</h2>
<Form {...EmailForm}>
<form
onSubmit={EmailForm.handleSubmit(emailSubmit)}
Expand Down

0 comments on commit 119cf64

Please sign in to comment.