Skip to content

Commit

Permalink
Fix focus states for 'applies to' links
Browse files Browse the repository at this point in the history
- when the link has been visited and then focussed, the style was for white text on a yellow (focussed) background
- adds an explicit focus state colour to fix this
  • Loading branch information
andysellick committed Aug 14, 2020
1 parent 8a4be3b commit f0fc4cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/assets/stylesheets/components/_important-metadata.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@

.app-link {
color: govuk-colour("white");
}

&:focus {
color: $govuk-text-colour;
}
}
}

0 comments on commit f0fc4cf

Please sign in to comment.