You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
241 B
Svelte

<script>
import Header from '$lib/header/Header.svelte';
import '../app.css';
</script>
<Header />
<main>
<slot />
</main>
<style>
main {
width: 100%;
padding: 0;
margin: 0 auto;
box-sizing: border-box;
}
</style>