From 27a056d01ac8d5e7c60d0de429192d89f50a0d0c Mon Sep 17 00:00:00 2001 From: Estrella Pan Date: Mon, 26 Jan 2026 20:14:38 +0100 Subject: [PATCH] fix(login): unify input height and font size with buttons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- webui/src/pages/login.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webui/src/pages/login.vue b/webui/src/pages/login.vue index bb4e15be..b10eeb29 100644 --- a/webui/src/pages/login.vue +++ b/webui/src/pages/login.vue @@ -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);