Fix footer centering
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 1m28s

This commit is contained in:
Lewis Dale 2024-10-11 13:15:45 +01:00
parent 14f0c09490
commit 8298c98039
2 changed files with 2 additions and 4 deletions

View File

@ -88,9 +88,9 @@
{{ content | safe }}
</div>
<footer>
<div class="wrapper-lg">Copyright &copy; {{ today.year }} {{ metadata.author.name }}</div>
<div class="wrapper-lg mx-auto text-center">Copyright &copy; {{ today.year }} {{ metadata.author.name }}</div>
<div class="wrapper-xs my-size-xs">
<div class="wrapper-xs mx-auto my-size-xs">
<p class="text-center">Part of the CSS JOY webring</p>
<div class="row" data-spacing="between">
<a href="https://webri.ng/webring/cssjoy/previous?via=https://lewisdale.dev">Previous</a>

View File

@ -1,7 +1,5 @@
[class*="wrapper"] {
max-width: var(--wrapper-size, var(--screen-3xl));
margin-left: auto;
margin-right: auto;
padding-left: var(--wrapper-padding, var(--space-size-3xl));
padding-right: var(--wrapper-padding, var(--space-size-3xl));
}