feat: update background color in LoginPage and RegisterPage components
Some checks failed
Frontend CI / lint (push) Failing after 5m8s
Frontend CI / build (push) Has been skipped

This commit is contained in:
JSC
2025-07-05 17:52:14 +02:00
parent 334ea9c391
commit 44c9c204f6
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ export function LoginPage() {
} }
return ( return (
<div className="min-h-screen flex items-center justify-center bg-gray-50 py-12 px-4 sm:px-6 lg:px-8"> <div className="min-h-screen flex items-center justify-center bg-background py-12 px-4 sm:px-6 lg:px-8">
<Card className="w-full max-w-md"> <Card className="w-full max-w-md">
<CardHeader className="space-y-1"> <CardHeader className="space-y-1">
<CardTitle className="text-2xl font-bold text-center">Sign in</CardTitle> <CardTitle className="text-2xl font-bold text-center">Sign in</CardTitle>

View File

@@ -89,7 +89,7 @@ export function RegisterPage() {
} }
return ( return (
<div className="min-h-screen flex items-center justify-center bg-gray-50 py-12 px-4 sm:px-6 lg:px-8"> <div className="min-h-screen flex items-center justify-center bg-background py-12 px-4 sm:px-6 lg:px-8">
<Card className="w-full max-w-md"> <Card className="w-full max-w-md">
<CardHeader className="space-y-1"> <CardHeader className="space-y-1">
<CardTitle className="text-2xl font-bold text-center">Create account</CardTitle> <CardTitle className="text-2xl font-bold text-center">Create account</CardTitle>