Subooru-Web/src/Layout/Footer.svelte

12 lines
269 B
Svelte
Raw Normal View History

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