From 6c535c406bceca3c95795ca8c93bf4171f1803e3 Mon Sep 17 00:00:00 2001 From: Ian James Date: Wed, 18 Sep 2019 11:15:54 +0100 Subject: [PATCH] Fixes branded links and organisation logo hover state text colour. --- .../stylesheets/helpers/_organisation-links.scss | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/helpers/_organisation-links.scss b/app/assets/stylesheets/helpers/_organisation-links.scss index 70a2e3c84..d5d6bc5db 100644 --- a/app/assets/stylesheets/helpers/_organisation-links.scss +++ b/app/assets/stylesheets/helpers/_organisation-links.scss @@ -1,7 +1,13 @@ @mixin organisation-links { @each $organisation in $all-organisation-brand-colours { - .#{nth($organisation, 1)}-brand-colour a { - color: nth($organisation, 3); + .#{nth($organisation, 1)}-brand-colour { + a { + color: nth($organisation, 3); + + &:focus { + color: $govuk-focus-text-colour; + } + } } } }