Browse Source

style(Footer) Additional styling tweaks and changes to Footer

main
Jonathan McCaffrey 4 years ago
parent
commit
3c7586960c
  1. 18
      Components/Shared/FooterComponent.razor

18
Components/Shared/FooterComponent.razor

@ -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;
} }
.footerLastUpdated {
text-align: center;
margin: auto;
}
.footerDisclaimer { .footerDisclaimer {
text-align: center; text-align: center;
margin: auto; margin: auto;
margin-top: 12px;
} }
</style> </style>
Loading…
Cancel
Save