dl.emersa.it/src/routes/+layout.svelte
2025-04-08 21:31:34 +02:00

27 lines
472 B
Svelte

<script lang="ts">
import '../app.css';
let { children } = $props();
</script>
{@render children()}
<footer
class="absolute bottom-0 mt-10 w-[100dvw] border-t-4 border-green-500 bg-black py-4 text-center text-green-500"
>
Made with ❤️ by Emersa <span> ©</span>
</footer>
<style>
span {
transform: rotate(180deg);
display: inline-block;
}
@media screen and (max-height: 600px) {
/* Your CSS rules here */
footer {
display: none;
}
}
</style>