From c4feb1b109ee9fbce67aea0f1790b7baeadf01d4 Mon Sep 17 00:00:00 2001 From: Sidney Gomes Date: Sat, 25 Jul 2026 09:57:15 -0300 Subject: [PATCH] Corrigindo fundo branco nas caixas de selecao (select) globalmente --- src/index.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/index.css b/src/index.css index 30f623f..3444447 100644 --- a/src/index.css +++ b/src/index.css @@ -142,3 +142,11 @@ input:-webkit-autofill:active { transition: background-color 5000s ease-in-out 0s; } +/* ── Fix select dropdown options styling globally ── */ +select { + color-scheme: dark; +} +select option { + background-color: #1a1a1a; + color: #ffffff; +}