webcompile/src/routes/__layout.svelte

20 lines
303 B
Svelte
Raw Normal View History

2022-02-28 23:42:33 +05:30
<script lang="ts">
import Header from "$lib/Header.svelte"
import '../assets/global.css'
2022-02-28 23:42:33 +05:30
</script>
<title>Project Segfault</title>
2022-02-28 23:42:33 +05:30
<Header />
<main>
<slot></slot>
</main>
<style>
:global(root) {
margin: 0;
padding: 0;
background-color: #505050;
}
</style>