From 07048567a169e01f14509639cc51bbd832ab06b8 Mon Sep 17 00:00:00 2001 From: akastijn Date: Thu, 13 Nov 2025 21:24:20 +0100 Subject: [PATCH] Set `body` background color in `RedirectComponent` styles to use secondary theme color --- .../app/shared-components/redirect/redirect.component.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/app/shared-components/redirect/redirect.component.scss b/frontend/src/app/shared-components/redirect/redirect.component.scss index 0c3cd22..3ef4de2 100644 --- a/frontend/src/app/shared-components/redirect/redirect.component.scss +++ b/frontend/src/app/shared-components/redirect/redirect.component.scss @@ -6,3 +6,7 @@ font-family: system-ui, -apple-system, "Segoe UI", Roboto; color: #555; } + +body { + background-color: var(--color-secondary); +}