diff options
Diffstat (limited to 'apps/kit/src/routes/book/+layout.svelte')
| -rw-r--r-- | apps/kit/src/routes/book/+layout.svelte | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/kit/src/routes/book/+layout.svelte b/apps/kit/src/routes/book/+layout.svelte new file mode 100644 index 0000000..0fcbd51 --- /dev/null +++ b/apps/kit/src/routes/book/+layout.svelte @@ -0,0 +1,26 @@ +<script> +</script> + +<div id="wrapper"> + <nav> + <a href="/book/alerts" class="link">Alerts</a> + </nav> + <main> + <slot /> + </main> +</div> + +<style> + #wrapper { + display: flex; + flex-direction: row; + } + nav { + min-width: 280px; + padding: 10px; + } + main { + width: 100%; + padding: 5px; + } +</style> |
