From fe2cb996519ef2a7dd9804015666b4143d3a6278 Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Mon, 10 Nov 2025 12:54:12 +0100 Subject: [PATCH] fix --- frontend/src/styles/forms/elements.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/frontend/src/styles/forms/elements.css b/frontend/src/styles/forms/elements.css index 29a58ca..d1c8ad1 100644 --- a/frontend/src/styles/forms/elements.css +++ b/frontend/src/styles/forms/elements.css @@ -9,6 +9,23 @@ select { box-sizing: border-box; } +input[type='text'], +input[type='email'], +input[type='password'], +input[type='search'], +input[type='number'], +input[type='url'], +input[type='tel'] { + font: inherit; + border-radius: 2px; + border: 1px solid var(--border); + padding: 0.4rem 0.5rem; + background: var(--surface); + color: inherit; + width: 100%; + box-sizing: border-box; +} + input:focus, textarea:focus, select:focus {