💄 fix footer bg
This commit is contained in:
parent
abde34ee29
commit
caf8b31781
2 changed files with 10 additions and 1 deletions
|
@ -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()} © Sindre Kjelsrud.
|
||||
</footer>
|
|
@ -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) }
|
||||
|
||||
|
|
Loading…
Reference in a new issue