fix(login): unify input height and font size with buttons

Standardize form element dimensions for visual consistency:
- Input height: 48px → 44px (matches button height)
- Input font: 16px → 14px (consistent with form elements)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Estrella Pan
2026-01-26 20:14:38 +01:00
parent 5ab38c335d
commit 27a056d01a

View File

@@ -308,9 +308,9 @@ async function handleLogin() {
.login-input {
width: 100%;
height: 48px;
height: 44px;
padding: 0 14px 0 44px;
font-size: 16px;
font-size: 14px;
color: var(--color-text);
background: var(--color-surface);
border: 1px solid var(--color-border);