From 3e41a079073fae14ec44731a90fc9b129e727a97 Mon Sep 17 00:00:00 2001 From: Julien Maille Date: Wed, 17 Nov 2021 00:07:41 +0100 Subject: [PATCH] FIX unreadable buttons in modals --- src/styles/Inputs.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/styles/Inputs.scss b/src/styles/Inputs.scss index 77b82e5..d79117a 100644 --- a/src/styles/Inputs.scss +++ b/src/styles/Inputs.scss @@ -11,6 +11,17 @@ button.main-button-primary { } } +// Modals +.GenericModal button.main-button-primary { + background-color: spiceColor("subtext", 0.6) !important; + color: spiceColor("main") !important; + + &:hover, + &:active { + background-color: spiceColor("subtext") !important; + } +} + // Checkbox .x-toggle-indicatorWrapper { background-color: spiceColor("subtext", 0.1);