Skip to content

Commit c4aa260

Browse files
Reduce padding between logo and text
Reduced the padding between the logo and the text in the AuthForm component.
1 parent 0bb460f commit c4aa260

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/AuthForm.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { useTranslation } from 'react-i18next';
1111
import { RefSpringLogo } from '@/components/RefSpringLogo';
1212

1313
export const AuthForm = () => {
14-
const [isLogin, setIsLogin] = useState(true);
14+
const [isLogin, setIsLogin] = useState(isLogin);
1515
const [email, setEmail] = useState('');
1616
const [password, setPassword] = useState('');
1717
const [loading, setLoading] = useState(false);
@@ -87,7 +87,7 @@ export const AuthForm = () => {
8787
<Card className="w-full max-w-md bg-white/80 backdrop-blur-sm border-slate-200/50 shadow-xl">
8888
<CardHeader className="text-center pb-6">
8989
{/* Logo RefSpring */}
90-
<div className="flex items-center justify-center gap-3 mb-4">
90+
<div className="flex items-center justify-center gap-2 mb-4">
9191
<RefSpringLogo width="40" height="40" />
9292
<div>
9393
<h1 className="text-3xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">

0 commit comments

Comments
 (0)