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:
parent
570b995248
commit
a83c45ebd6
@ -67,7 +67,7 @@ export function AuthPageCard({
|
||||
|
||||
export function AuthPageShell({ children }: { children: React.ReactNode }) {
|
||||
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}
|
||||
</div>
|
||||
);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user