Merge branch '#102-MakeLinksCursorTheSame' into Release0.2

This commit is contained in:
Chris.Watts90@outlook.com 2018-05-29 13:56:55 +01:00
commit 0653fb60d2
2 changed files with 5 additions and 1 deletions

View File

@ -377,6 +377,6 @@
</div> </div>
</footer> </footer>
<script src="Helpers.js" type="text/javascript"></script> <script src="Helpers.js" type="text/javascript"></script>
<script src="spa.js" type="text/javascript"></script> <script src="spa.js" type="text/javascript"></script>
</body> </body>
</html> </html>

View File

@ -29,4 +29,8 @@
.footerBody { .footerBody {
/* 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;
} }