Add underlines on hover for all navigation

This commit is contained in:
Chris Hill-Scott
2016-01-11 17:19:09 +00:00
parent 4cb535a2e1
commit 29aaa1888c
3 changed files with 20 additions and 3 deletions

View File

@@ -34,9 +34,16 @@
a {
display: block;
margin-top: 3px;
.js-enabled & {
padding-left: 20px;
&:hover {
text-decoration: underline;
}
}
}

View File

@@ -5,9 +5,18 @@
border-bottom: 1px solid $border-colour;
padding: 10px 0 8px;
a:link,
a:visited {
text-decoration: none;
a {
&:link,
&:visited {
text-decoration: none;
}
&:hover {
color: $link-hover-colour;
text-decoration: underline;
}
}
&-account {

View File

@@ -21,6 +21,7 @@
a:hover {
color: $link-hover-colour;
text-decoration: underline;
}
}