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