Fix cursor when hovering over any hyperlink. Made it a pointer (finger)

#102
This commit is contained in:
Chris.Watts90@outlook.com 2018-05-29 13:55:07 +01:00
parent 11a212a635
commit 7e214cbab3
2 changed files with 5 additions and 1 deletions

View File

@ -30,3 +30,7 @@
/* Margin bottom by footer height */ /* Margin bottom by footer height */
margin-bottom: 132px; margin-bottom: 132px;
} }
/*Make the cursor a pointer for all hyperlinks*/
a:hover {
cursor: pointer;
}