From 0d97195472e48899aeaa07d5e8365c13560fdb62 Mon Sep 17 00:00:00 2001 From: XileHorizon <33043119+XileHorizon@users.noreply.github.com> Date: Tue, 24 Sep 2024 12:19:40 -0400 Subject: [PATCH] Fix Windows Dropdown Background The dropdown menus on Windows have looked messed up for a while. The background coloring has always been white despite changing themes, while the text changes color with the theme. Now the Background of the dropdown menus mirror the background of the app. I have not tested on Mac or Linux. --- src/variables.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/variables.scss b/src/variables.scss index a50c7ad4c..ea76580e5 100644 --- a/src/variables.scss +++ b/src/variables.scss @@ -115,3 +115,7 @@ --sticker-width: 8.5rem; --sticker-width-rendered: 18rem; } + +select option { + background: var(--background); +}