From 05c50df20ca55053297d3b316a46c106b185b2b7 Mon Sep 17 00:00:00 2001 From: Jorge Date: Wed, 17 Jun 2026 19:01:32 +0200 Subject: [PATCH] Bugfix/dark mode styling of safe withdrawal rate selector in FIRE section (#7053) * Fix styling of safe withdrawal rate selector in dark mode * Update changelog --- CHANGELOG.md | 1 + apps/client/src/app/pages/portfolio/fire/fire-page.scss | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 323f05c79..5d68aa0de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed a chart error on interaction by registering the annotation plugin early - Fixed an issue on the allocations page where clicking an account in the _By Account_ chart did not open the detail dialog - Restricted the maximum height of the import activities dialog +- Fixed the dark mode styling of the safe withdrawal rate selector in the _FIRE_ section (experimental) ## 3.11.0 - 2026-06-14 diff --git a/apps/client/src/app/pages/portfolio/fire/fire-page.scss b/apps/client/src/app/pages/portfolio/fire/fire-page.scss index 3a0618ed6..6a5f037e2 100644 --- a/apps/client/src/app/pages/portfolio/fire/fire-page.scss +++ b/apps/client/src/app/pages/portfolio/fire/fire-page.scss @@ -29,5 +29,9 @@ @include select-arrow(variables.$light-primary-text); color: rgb(var(--light-primary-text)); + + option { + color: rgb(var(--dark-primary-text)); + } } }