Add underlines on hover for all navigation

This commit is contained in:
Chris Hill-Scott
2016-01-12 11:47:02 +00:00
parent 4cb535a2e1
commit 29aaa1888c
3 changed files with 20 additions and 3 deletions
@@ -34,9 +34,16 @@
a { a {
display: block; display: block;
margin-top: 3px;
.js-enabled & { .js-enabled & {
padding-left: 20px; padding-left: 20px;
&:hover {
text-decoration: underline;
}
} }
} }
@@ -5,9 +5,18 @@
border-bottom: 1px solid $border-colour; border-bottom: 1px solid $border-colour;
padding: 10px 0 8px; padding: 10px 0 8px;
a:link, a {
a:visited {
text-decoration: none; &:link,
&:visited {
text-decoration: none;
}
&:hover {
color: $link-hover-colour;
text-decoration: underline;
}
} }
&-account { &-account {
@@ -21,6 +21,7 @@
a:hover { a:hover {
color: $link-hover-colour; color: $link-hover-colour;
text-decoration: underline;
} }
} }