style(Footer) Additional styling tweaks and changes to Footer

This commit is contained in:
2022-05-02 12:39:47 -04:00
parent 9db454482b
commit 3c7586960c
+12 -8
View File
@@ -1,7 +1,8 @@
@inject IVariableService VariableService @inject IVariableService VariableService
<div class="footerContainer"> <div class="footerContainer" xmlns="http://www.w3.org/1999/html">
<div class="footerSocials"> <div class="footerSocials">
<a href="https://github.com/JonathanMcCaffrey/IGP-Fan-Reference/discussions" target="_blank"> <a href="https://github.com/JonathanMcCaffrey/IGP-Fan-Reference/discussions" target="_blank">
<i class="fa-brands fa-github"></i> <i class="fa-brands fa-github"></i>
</a> </a>
@@ -19,13 +20,10 @@
<a href="https://www.twitch.tv/jonathanmccaffrey" target="_blank"> <a href="https://www.twitch.tv/jonathanmccaffrey" target="_blank">
<i class="fa-brands fa-twitch"></i> <i class="fa-brands fa-twitch"></i>
</a> </a>
<span>|</span>
<span>Updated @VariableService.Variables["LastUpdated"]</span>
</div> </div>
<div class="footerLastUpdated">Website updated <a href="https://github.com/JonathanMcCaffrey/IGP-Fan-Reference/commits/main"><b>@VariableService.Variables["LastUpdated"]</b></a></div>
<div class="footerDisclaimer"> <div class="footerDisclaimer">
This site is fan-made and not affiliated with SunSpear Games in any way. This website is fan-made and not affiliated with SunSpear Games in any way.
</div> </div>
</div> </div>
@@ -38,7 +36,7 @@
justify-content: center; justify-content: center;
padding-top: 8px; padding-top: 8px;
padding-bottom: 96px; padding-bottom: 96px;
gap: 24px; gap: 12px;
} }
.footerSocials { .footerSocials {
@@ -49,9 +47,15 @@
margin: auto; margin: auto;
} }
.footerDisclaimer { .footerLastUpdated {
text-align: center; text-align: center;
margin: auto; margin: auto;
} }
.footerDisclaimer {
text-align: center;
margin: auto;
margin-top: 12px;
}
</style> </style>