From 5b1d6fd4946952bf38eb9c650d0d6eff80bc2138 Mon Sep 17 00:00:00 2001 From: Ali Amori Kadhim Date: Sun, 27 Aug 2023 14:08:44 +0200 Subject: [PATCH] fix(pdc-frontend): correct the eherkenning background-color --- .../src/app/[locale]/products/[slug]/page.tsx | 2 +- apps/pdc-frontend/src/styles/globals.css | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/pdc-frontend/src/app/[locale]/products/[slug]/page.tsx b/apps/pdc-frontend/src/app/[locale]/products/[slug]/page.tsx index 8c789215..537ec9c0 100644 --- a/apps/pdc-frontend/src/app/[locale]/products/[slug]/page.tsx +++ b/apps/pdc-frontend/src/app/[locale]/products/[slug]/page.tsx @@ -64,7 +64,7 @@ const LogoButton = ({ logo, appearance, href, text, label }: any) => { appearance="primary-action-button" href={href} aria-label={label} - className="utrecht-button-link--magenta" + className="utrecht-button-link--eherkenning" > {text} diff --git a/apps/pdc-frontend/src/styles/globals.css b/apps/pdc-frontend/src/styles/globals.css index f334fd65..40030930 100644 --- a/apps/pdc-frontend/src/styles/globals.css +++ b/apps/pdc-frontend/src/styles/globals.css @@ -107,13 +107,13 @@ th > p { --utrecht-paragraph-font-weight: var(--utrecht-table-header-font-weight); } -.utrecht-button-link--magenta { +.utrecht-button-link--eherkenning { --utrecht-button-primary-action-focus-border-color: var(--utrecht-color-grey-10); --utrecht-button-primary-action-active-border-color: var(--utrecht-color-grey-10); --utrecht-button-primary-action-active-color: var(--utrecht-color-white); - --utrecht-button-primary-action-background-color: var(--utrecht-color-secondary-magenta); - --utrecht-button-primary-action-active-background-color: var(--utrecht-color-secondary-magenta); - --utrecht-button-primary-action-hover-background-color: var(--utrecht-color-secondary-magenta); - --utrecht-button-primary-action-focus-background-color: var(--utrecht-color-secondary-magenta); - --utrecht-button-primary-action-pressed-background-color: var(--utrecht-color-secondary-magenta); + --utrecht-button-primary-action-background-color: #bc3983; + --utrecht-button-primary-action-active-background-color: #bc3983; + --utrecht-button-primary-action-hover-background-color: #bc3983; + --utrecht-button-primary-action-focus-background-color: #bc3983; + --utrecht-button-primary-action-pressed-background-color: #bc3983; }