From 6354913420a11c2f199d21ea59740651704ff17e Mon Sep 17 00:00:00 2001 From: ekzyis Date: Wed, 3 May 2023 01:03:11 +0200 Subject: [PATCH] Fix dropdown items not visible in darkmode on some browsers --- styles/globals.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/styles/globals.scss b/styles/globals.scss index 82252c28..c188c006 100644 --- a/styles/globals.scss +++ b/styles/globals.scss @@ -184,6 +184,11 @@ select.custom-select { background-size: 1.5rem; } +select.custom-select option { + // fix dropdown items not visible in darkmode on some browsers + color: initial; +} + select.custom-select:focus { border-color: none !important; box-shadow: none !important;