From 9866d9137e9ce06e28eed89cf8c83a1d059ece5d Mon Sep 17 00:00:00 2001 From: Ariel Juodziukynas Date: Sun, 21 Jan 2024 13:51:15 -0300 Subject: [PATCH 1/2] Fix text color for game card status --- src/frontend/themes.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/frontend/themes.scss b/src/frontend/themes.scss index 84c5ff8983..758739b778 100644 --- a/src/frontend/themes.scss +++ b/src/frontend/themes.scss @@ -362,6 +362,10 @@ body.nord-light { .progressDialog.log-box { background-color: #dde1e7; } + + .gameCard > .gameCardStatus { + color: var(--navbar-active); + } } body.nord-light .alternative > svg { From 6a80eaeae35b73a840b9d329b84dbeadd8077da5 Mon Sep 17 00:00:00 2001 From: Ariel Juodziukynas Date: Sun, 21 Jan 2024 14:04:07 -0300 Subject: [PATCH 2/2] Some Nord-Light theme fixes --- src/frontend/themes.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/themes.scss b/src/frontend/themes.scss index 758739b778..0a66640646 100644 --- a/src/frontend/themes.scss +++ b/src/frontend/themes.scss @@ -359,7 +359,8 @@ body.nord-light { } } } - .progressDialog.log-box { + .progressDialog.log-box, + .errorDialog.error-box { background-color: #dde1e7; }