Skip to content

Commit 63886e8

Browse files
committed
Fix unnecessary space between navbar and login section
1 parent 8d22ce6 commit 63886e8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/pages/Auth/Login.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ const LoginPage = () => {
8282
};
8383

8484
return (
85-
<div className="flex items-center h-full justify-center">
86-
<div className="px-4 py-4 flex flex-col relative w-1/2">
85+
<div className="flex flex-col items-center pt-8 pb-8 min-h-0">
86+
<div className="px-4 py-4 flex flex-col relative w-full max-w-md">
8787
<h1 className="my-4 text-3xl font-bold text-center">
8888
{t("common:LOGIN")}
8989
</h1>
@@ -174,7 +174,7 @@ const LoginPage = () => {
174174
</button>
175175
</div> */}
176176

177-
<div className="mt-16 flex flex-row justify-center">
177+
<div className="mt-8 flex flex-row justify-center">
178178
<p>{t("common:NONE_ACCOUNT")}</p>
179179
<button
180180
className="mx-2 text-left underline"

0 commit comments

Comments
 (0)