Skip to content

Commit

Permalink
[frontend] Fix layout for login/signup pages
Browse files Browse the repository at this point in the history
  • Loading branch information
usatie committed Feb 7, 2024
1 parent a1c5a7a commit 472438e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions frontend/app/(guest-only)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<main className="flex items-center justify-center md:h-screen">
<div className="relative mx-auto flex w-full max-w-[400px] flex-col space-y-2.5 p-4 md:-mt-32">
{children}
</div>
</main>
);
return <div className="mx-auto mt-4 w-full max-w-[400px]">{children}</div>;
}

0 comments on commit 472438e

Please sign in to comment.