diff options
Diffstat (limited to 'hi-ui/src/routes/+layout.svelte')
| -rw-r--r-- | hi-ui/src/routes/+layout.svelte | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/hi-ui/src/routes/+layout.svelte b/hi-ui/src/routes/+layout.svelte new file mode 100644 index 0000000..67a5fa5 --- /dev/null +++ b/hi-ui/src/routes/+layout.svelte @@ -0,0 +1,20 @@ +<script> + import "../app.css"; + + export const ssr = false; +</script> + +<div id="app"> + <h1>hi</h1> + + <slot /> +</div> + +<style> + #app { + margin: 0; + padding: 1rem; + height: 100vh; + width: 100%; + } +</style> |
