fix: match auth page background color to body (#62)

AuthPageShell used bg-base-100 while the body uses bg-base-200,
causing two different shades of black on login/sign-up pages.
This commit is contained in:
Ben Senescu 2026-04-03 14:21:05 -04:00 committed by Ben Senescu
parent 570b995248
commit a83c45ebd6

View File

@ -67,7 +67,7 @@ export function AuthPageCard({
export function AuthPageShell({ children }: { children: React.ReactNode }) { export function AuthPageShell({ children }: { children: React.ReactNode }) {
return ( return (
<div className="min-h-[100dvh] flex flex-col items-center justify-center p-4 bg-base-100"> <div className="min-h-[100dvh] flex flex-col items-center justify-center p-4 bg-base-200">
{children} {children}
</div> </div>
); );