diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-09-27 23:08:56 -0400 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-09-27 23:08:56 -0400 |
| commit | b892bd9fdba5fe9397f3c4432b3039aa961b7a14 (patch) | |
| tree | 05fcba01d80fe663318d06f5d5a6b00bc9fee792 /hi-ui/src/routes/+layout.svelte | |
| parent | 1d8b828d1bbe0e0daa64f6fc2689799c7169afa0 (diff) | |
Add lots of style and layout
Diffstat (limited to 'hi-ui/src/routes/+layout.svelte')
| -rw-r--r-- | hi-ui/src/routes/+layout.svelte | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hi-ui/src/routes/+layout.svelte b/hi-ui/src/routes/+layout.svelte index e3c6561..3673e58 100644 --- a/hi-ui/src/routes/+layout.svelte +++ b/hi-ui/src/routes/+layout.svelte @@ -2,6 +2,15 @@ import "../app.css"; </script> -<div class="container mx-auto"> +<div id="app"> <slot /> </div> + +<style> + #app { + margin: 0; + padding: 1rem; + height: 100vh; + width: 100%; + } +</style> |
