adjust spacing in login page to match signup

This commit is contained in:
john 2025-06-17 09:56:22 +02:00
parent 17ee016398
commit 4687f0408b

View file

@ -95,7 +95,7 @@ export default function LoginPage({ authService }: LoginPageProps) {
id="password"
value={password}
onInput={setPassword}
className={'mb-3'}
className={'mb-4'}
/>
</div>
@ -120,7 +120,7 @@ export default function LoginPage({ authService }: LoginPageProps) {
{t('auth.login.register_instead')}
</LinkButton>
<span className="text-xs h-3 text-red-500">{error}</span>
<span className={'text-xs h-3 text-red-500'}>{error}</span>
</form>
</div>
</main>