Subooru-Web/src/Layout/Footer.svelte

12 lines
269 B
Svelte

<footer>Copyright &copy; {new Date().getFullYear()} Riley S.</footer>
<style>
footer
{
@apply bg-gray-300 p-2 border-t border-black;
grid-area: footer;
}
:global(.dark) footer
{
@apply bg-gray-900 border-white;
}
</style>