From ccf5f7e2951ecd957450d83d9982bf34c924746f Mon Sep 17 00:00:00 2001 From: Laura Porter Date: Tue, 3 Dec 2024 10:48:28 +0000 Subject: [PATCH] (Fix) Force Header and DfE Nav links to always be white These were being overriden by the DfE styles, ending up blue when they should be white. --- CHANGELOG.md | 2 ++ app/assets/stylesheets/application.scss | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07be48c38..5e1b72959 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Fixed - No longer unassign project on update when team is RCS. +- Header and DfE Navigation links are now always white, instead of being blue + when in the "unvisited" state. ## [Release-97][release-97] diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 8e5705764..cef7ce541 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -110,3 +110,8 @@ address.govuk-address { // force skip link to be underline .govuk-skip-link { text-decoration: underline !important; } + +// force header and DfE navigation links to always be white +a.dfe-header__link--service, a.dfe-header__navigation-link { + color: #ffffff; +}