diff options
Diffstat (limited to 'hi-ui/src/routes/+layout.svelte')
| -rw-r--r-- | hi-ui/src/routes/+layout.svelte | 18 |
1 files changed, 18 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..f54f3bf --- /dev/null +++ b/hi-ui/src/routes/+layout.svelte @@ -0,0 +1,18 @@ +<script> + import "../app.css"; +</script> + +<div id="app"> + <h1>hi</h1> + + <slot /> +</div> + +<style> + #app { + margin: 0; + padding: 1rem; + height: 100vh; + width: 100%; + } +</style> |
