aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/routes/book/+layout.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'apps/kit/src/routes/book/+layout.svelte')
-rw-r--r--apps/kit/src/routes/book/+layout.svelte64
1 files changed, 0 insertions, 64 deletions
diff --git a/apps/kit/src/routes/book/+layout.svelte b/apps/kit/src/routes/book/+layout.svelte
deleted file mode 100644
index aeed0d4..0000000
--- a/apps/kit/src/routes/book/+layout.svelte
+++ /dev/null
@@ -1,64 +0,0 @@
-<script>
- import { page } from "$app/stores";
- import "../../app.pcss";
-</script>
-
-<div id="wrapper">
- <nav>
- <a
- href="/book/alerts"
- class="link"
- class:active={$page.url.pathname.startsWith("/book/alerts")}
- >Alerts</a
- >
- <a
- href="/book/buttons"
- class="link"
- class:active={$page.url.pathname.startsWith("/book/buttons")}
- >Buttons</a
- >
- <a
- href="/book/toggles"
- class="link"
- class:active={$page.url.pathname.startsWith("/book/toggles")}
- >Toggles</a
- >
- <a
- href="/book/inputs"
- class="link"
- class:active={$page.url.pathname.startsWith("/book/inputs")}
- >Inputs</a
- >
- </nav>
- <main>
- <slot />
- </main>
-</div>
-
-<style global lang="postcss">
- #wrapper {
- display: flex;
- flex-direction: row;
- }
- nav {
- min-width: 120px;
- padding: 10px;
- display: flex;
- flex-direction: column;
- position: sticky;
- position: -webkit-sticky;
- top: 0;
- height: fit-content;
- }
- main {
- width: 100%;
- padding: 10px;
- }
- section {
- margin-bottom: 25px;
-
- h2 {
- margin-bottom: 5px;
- }
- }
-</style>