From 4bc1d93b75cc414efcff200ffd8701551293288f Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Thu, 16 Apr 2026 21:07:47 +0300 Subject: [PATCH] style/about dialog: lower CSS selector specificity --- apps/client/src/widgets/dialogs/about.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/client/src/widgets/dialogs/about.css b/apps/client/src/widgets/dialogs/about.css index 023a62d8e7..06e4d9f47c 100644 --- a/apps/client/src/widgets/dialogs/about.css +++ b/apps/client/src/widgets/dialogs/about.css @@ -1,6 +1,6 @@ .about-dialog { - body.light-theme & { + :where(body.light-theme &) { --donate-button-color: #e33f3b; &.nightly { @@ -8,9 +8,9 @@ } } - body.dark-theme & { + :where(body.dark-theme &) { --donate-button-color: #fba6a5; - + &.nightly { --modal-background-color: #23182b; }