From 3e3c04b826685d108d93ef0bcad5f45856d72c38 Mon Sep 17 00:00:00 2001 From: Choaib Elmadi <111356633+Choaib-ELMADI@users.noreply.github.com> Date: Sun, 18 Aug 2024 20:23:10 +0100 Subject: [PATCH] Update the auth page global styles This commit adjusts the auth page styles for better responsiveness. It changes h-screen to min-h-screen for more flexible height and adds padding (p-4) to improve layout and spacing on smaller screens. The content remains centered and aligned using flexbox. --- app/globals.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/globals.css b/app/globals.css index 15dcdf1..e85abce 100644 --- a/app/globals.css +++ b/app/globals.css @@ -152,7 +152,7 @@ /* ======================== Auth Pages */ .auth-page { - @apply flex h-screen w-full flex-col items-center justify-center gap-10; + @apply flex min-h-screen w-full flex-col items-center justify-center p-4; } /* ======================== Home Page */ @@ -312,4 +312,4 @@ .lb-elevation { background: #0f1c34; -} \ No newline at end of file +}