summaryrefslogtreecommitdiff
path: root/hi-ui/src/routes/+layout.svelte
blob: 3673e5875f066055ca55026480a3b74edb68d4c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script>
  import "../app.css";
</script>

<div id="app">
    <slot />
</div>

<style>
    #app {
        margin: 0;
        padding: 1rem;
        height: 100vh;
        width: 100%;
    }
</style>