From 79cf8273e936d15194cefc9186b97b6865becddc Mon Sep 17 00:00:00 2001
From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
Date: Sun, 2 Nov 2025 15:12:36 +0100
Subject: [PATCH] Fix style of selector
---
.../client/src/app/pages/portfolio/fire/fire-page.scss | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
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 ba39b2475..da204dfe8 100644
--- a/apps/client/src/app/pages/portfolio/fire/fire-page.scss
+++ b/apps/client/src/app/pages/portfolio/fire/fire-page.scss
@@ -1,12 +1,17 @@
@use '../../../../styles/variables.scss' as variables;
+@mixin select-arrow($color) {
+ background-image: url("data:image/svg+xml;utf8,");
+}
+
:host {
display: block;
.safe-withdrawal-rate-select {
+ @include select-arrow(variables.$dark-primary-text);
+
appearance: none;
background-color: transparent;
- background-image: url("data:image/svg+xml;utf8,");
background-position: right 0 center;
background-repeat: no-repeat;
color: rgb(var(--dark-primary-text));
@@ -21,7 +26,8 @@
:host-context(.theme-dark) {
.safe-withdrawal-rate-select {
- background-image: url("data:image/svg+xml;utf8,");
+ @include select-arrow(variables.$light-primary-text);
+
color: rgb(var(--light-primary-text));
}
}