💄 fix footer bg

This commit is contained in:
SindreKjelsrud 2023-09-25 14:46:17 +02:00
parent abde34ee29
commit caf8b31781
2 changed files with 10 additions and 1 deletions

View file

@ -2,6 +2,6 @@
const today = new Date();
---
<footer class="flex justify-center fixed w-screen bottom-0 p-4">
<footer class="flex justify-center fixed w-screen bottom-0 p-4 footerbg">
{today.getFullYear()} &copy; Sindre Kjelsrud.
</footer>

View file

@ -50,6 +50,15 @@ body {
color: #1DB954 !important;
}
/* FOOTER */
.footerbg {
background-color: var(--light-bg);
}
.dark .footerbg {
background-color: var(--dark-bg);
}
/* TOOLS */
.cards :hover { background: var(--light-hover) }