Squashed commit of the following: commit 787b84159c894cb38ea9eb1423069884f8b56bc4 Author: ChrisDill <chris.rj.dill@gmail.com> Date: Sat Jul 24 16:57:16 2021 +0100 Test footer fix for smaller resolutions commit bc8cba413d12250d76118ce31668a6dd4e8eebbd Author: ChrisDill <chris.rj.dill@gmail.com> Date: Wed Jul 21 18:53:05 2021 +0100 Add jsconfig.json and update error/layout prefix commit 03d1cfced8b095ff79173a25ac2612aaa7f895aa Author: ChrisDill <chris.rj.dill@gmail.com> Date: Wed Jul 21 18:06:45 2021 +0100 Test sveltekit fixes to get static adapter to work commit 6f4c28b0ead9d758fbb649d13188da38a6dfb00f Author: ChrisDill <chris.rj.dill@gmail.com> Date: Wed Dec 16 10:25:42 2020 +0000 Initial sveltekit test - New branch for testing out sveltekit. It is not yet 1.0 so this is for experimental purposes.

This commit is contained in:
Rgebee 2021-07-26 12:22:47 +01:00
commit ad0bbd26db
24 changed files with 388 additions and 3054 deletions

View file

@ -0,0 +1,41 @@
<script>
import Nav from '../components/Nav.svelte';
import userManager from '../components/userManager.svelte'
import Modal from '../components/Modal.svelte'
import Footer from '../components/footer.svelte'
export let segment;
</script>
<style>
/*main {
position: relative;
max-width: 56em;
background-color: white;
padding: 2em;
margin: 0 auto;
box-sizing: border-box;
}*/
/* Dark theme */
:global(html[data-theme='dark']) {
--background-color: #222222;
--headings-color: #ffffff;
--font-color: #ffffff;
}
:global(body) {
font-family: 'Open Sans', sans-serif;
font-size: 1rem;
background-color: var(--background-color);
color: var(--font-color);
box-sizing: border-box;
}
</style>
<Modal/>
<Nav {segment} rightComponent={userManager}/>
<slot></slot>
<Footer/>