feat(auth): Update auth page layout

The width of the authentication page is adjusted to occupy the full width of the viewport to enhance usability. This layout update ensures consistency for different screen sizes.
This commit is contained in:
Mathis H (Avnyr) 2024-06-17 09:45:58 +02:00
parent b5526e5877
commit 5c81ad917d
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -3,7 +3,7 @@ import Image from "next/image";
export default function AuthPage() {
return (
<main className="flex flex-col items-center justify-start h-full w-2/4">
<main className="flex flex-col items-center justify-start h-full w-full">
<AuthForms />
</main>
);