36 lines
460 B
Svelte
36 lines
460 B
Svelte
<script lang="ts">
|
|
import Header from './Header.svelte';
|
|
import './layout.css';
|
|
|
|
let { children } = $props();
|
|
|
|
</script>
|
|
|
|
<div class="app">
|
|
<Header />
|
|
|
|
<main>
|
|
{@render children()}
|
|
</main>
|
|
|
|
</div>
|
|
|
|
<style>
|
|
.app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 1rem;
|
|
width: 100%;
|
|
max-width: 64rem;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
</style>
|