Swap underline to hover state

This commit is contained in:
Mike Jolley 2018-03-05 22:06:51 +00:00
parent 88c7c1333b
commit 882d009002
3 changed files with 4 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -336,13 +336,14 @@ body {
line-height: 1.4em; line-height: 1.4em;
a { a {
color: #a16696; color: #a16696;
text-decoration: underline; text-decoration: none;
padding: 1.5em; padding: 1.5em;
margin: -1.5em; margin: -1.5em;
position: relative; position: relative;
z-index: 1; z-index: 1;
&:hover, &:focus { &:hover, &:focus {
color: #111; color: #111;
text-decoration: underline;
} }
} }
} }