Skip to content

Commit

Permalink
Fixes branded links and organisation logo hover state text colour.
Browse files Browse the repository at this point in the history
  • Loading branch information
injms committed Sep 18, 2019
1 parent 5cae192 commit 6c535c4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/assets/stylesheets/helpers/_organisation-links.scss
Original file line number Diff line number Diff line change
@@ -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;
}
}
}
}
}

0 comments on commit 6c535c4

Please sign in to comment.