Fix hidden trial mode link

This link wasn’t styled, therefore it had, by default, the same colour
as its background (blue).

This commit explicitly sets it to be white, so it is visible against its
background.
This commit is contained in:
Chris Hill-Scott
2016-04-05 13:44:53 +01:00
parent 53883fc162
commit 0e22c9b2e0

View File

@@ -71,7 +71,27 @@
}
&-action {
display: block;
text-align: right;
float: right;
&:link,
&:visited {
color: $white;
}
&:hover,
&:active {
color: $light-blue-25;
}
&:active,
&:focus {
background-color: $yellow;
color: $govuk-blue;
}
}
}