From c128609c647095a937babf459f041cfcf823c2c8 Mon Sep 17 00:00:00 2001 From: Tero Halla-aho Date: Fri, 28 Nov 2025 12:54:05 +0200 Subject: [PATCH] Fix EV dropdown height --- app/globals.css | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/app/globals.css b/app/globals.css index bf3056d..db5bd49 100644 --- a/app/globals.css +++ b/app/globals.css @@ -471,7 +471,6 @@ label { } input, -select, textarea { width: 100%; padding: 12px 14px; @@ -484,6 +483,28 @@ textarea { transition: border-color 120ms ease, box-shadow 120ms ease; } +select { + width: 100%; + height: 44px; + padding: 10px 14px; + padding-right: 36px; + border-radius: 10px; + border: 1px solid rgba(148, 163, 184, 0.35); + background: rgba(255, 255, 255, 0.04); + color: var(--text); + font-size: 15px; + line-height: 1.3; + transition: border-color 120ms ease, box-shadow 120ms ease; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), + linear-gradient(135deg, currentColor 50%, transparent 50%); + background-position: right 12px center, right 6px center; + background-size: 7px 7px; + background-repeat: no-repeat; +} + input:focus, select:focus, textarea:focus {