From 2f6ff081f38934e5e4e5ba442595a831a1e70154 Mon Sep 17 00:00:00 2001 From: Gregory Wells Date: Tue, 31 Mar 2026 20:56:39 -0400 Subject: [PATCH] change default style for input --- static/login_page.css | 9 --------- static/style.css | 12 ++++++++++++ 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/static/login_page.css b/static/login_page.css index bdb17cb..d901841 100644 --- a/static/login_page.css +++ b/static/login_page.css @@ -19,18 +19,9 @@ } #login_card input { - padding: 12px; - background-color: var(--bg-input); - border: 1px solid var(--border-subtle); - color: var(--text-main); - border-radius: 6px; width: 324px; } -#login_card input::placeholder { - color: var(--text-muted); -} - #login_card div { width: 100%; } diff --git a/static/style.css b/static/style.css index df45ab4..28fab2e 100644 --- a/static/style.css +++ b/static/style.css @@ -38,6 +38,18 @@ button:hover { background-color: var(--primary-hover); } +input { + padding: 12px; + background-color: var(--bg-input); + border: 1px solid var(--border-subtle); + color: var(--text-main); + border-radius: 6px; +} + +input::placeholder { + color: var(--text-muted); +} + .hidden { display: none; }