From 16e52b0494423c42775386d28467bd5b4ab0f58b Mon Sep 17 00:00:00 2001 From: Luis de Dios Date: Mon, 10 Aug 2026 15:51:31 +0200 Subject: [PATCH] :bug: Fix error page logo not visible in dark mode (#11167) --- frontend/src/app/main/ui/static.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/app/main/ui/static.scss b/frontend/src/app/main/ui/static.scss index 9f87bd9d3d..1708e23cd7 100644 --- a/frontend/src/app/main/ui/static.scss +++ b/frontend/src/app/main/ui/static.scss @@ -69,6 +69,7 @@ // SVG inside deco-before — no class available on the raw element .deco-before svg { position: absolute; + fill: var(--color-foreground-secondary); block-size: 1537px; inline-size: px2rem(80); inset-block-end: 0; @@ -76,6 +77,7 @@ // SVG inside deco-after2 — no class available on the raw element .deco-after2 svg { + fill: var(--color-foreground-secondary); block-size: 1537px; inline-size: px2rem(80); }