From 1bfe0ab022400955e652fafbbdc0f3b32a48f2ee Mon Sep 17 00:00:00 2001 From: Marcel Date: Fri, 27 Mar 2026 12:41:41 +0100 Subject: [PATCH] fix(#96): remove off-brand lavender accent bar from all pages The h-1 bg-brand-purple strip (#b4b9ff) is not a De Gruyter brand color and was added as a rough placeholder. Removed from +layout.svelte and the three auth pages (login, forgot-password, reset-password). Also removed the unused --palette-purple and --color-brand-purple CSS tokens from layout.css. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/routes/+layout.svelte | 3 --- frontend/src/routes/forgot-password/+page.svelte | 3 --- frontend/src/routes/layout.css | 2 -- frontend/src/routes/login/+page.svelte | 3 --- frontend/src/routes/reset-password/+page.svelte | 3 --- 5 files changed, 14 deletions(-) diff --git a/frontend/src/routes/+layout.svelte b/frontend/src/routes/+layout.svelte index 32d85fe3..39b68ed4 100644 --- a/frontend/src/routes/+layout.svelte +++ b/frontend/src/routes/+layout.svelte @@ -39,9 +39,6 @@ const userInitials = $derived.by(() => {
{#if !isAuthPage}
- -
-
diff --git a/frontend/src/routes/forgot-password/+page.svelte b/frontend/src/routes/forgot-password/+page.svelte index 63eb48ac..bb9e34f4 100644 --- a/frontend/src/routes/forgot-password/+page.svelte +++ b/frontend/src/routes/forgot-password/+page.svelte @@ -5,9 +5,6 @@ let { form }: { form?: { error?: string; success?: boolean } } = $props();
- -
-
diff --git a/frontend/src/routes/layout.css b/frontend/src/routes/layout.css index 32a8e2a5..5ae7a37f 100644 --- a/frontend/src/routes/layout.css +++ b/frontend/src/routes/layout.css @@ -10,7 +10,6 @@ --palette-mint: #a1dcd8; --palette-turquoise: #00c7b1; --palette-sand: #f0efe9; - --palette-purple: #b4b9ff; /* Typography */ --font-sans: 'Montserrat', ui-sans-serif, system-ui, sans-serif; @@ -58,7 +57,6 @@ --color-pdf-text: var(--c-pdf-text); /* Static brand tokens (not themed) */ - --color-brand-purple: var(--palette-purple); --color-brand-navy: var(--palette-navy); --color-brand-mint: var(--palette-mint); } diff --git a/frontend/src/routes/login/+page.svelte b/frontend/src/routes/login/+page.svelte index 261d3798..56b32ab1 100644 --- a/frontend/src/routes/login/+page.svelte +++ b/frontend/src/routes/login/+page.svelte @@ -10,9 +10,6 @@ const activeLocale = $derived(getLocale().toUpperCase());
- -
-
{#each locales as locale (locale)} diff --git a/frontend/src/routes/reset-password/+page.svelte b/frontend/src/routes/reset-password/+page.svelte index e3a6bc7e..2a76e692 100644 --- a/frontend/src/routes/reset-password/+page.svelte +++ b/frontend/src/routes/reset-password/+page.svelte @@ -12,9 +12,6 @@ let {
- -
-
-- 2.49.1