aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/routes/book/+layout.svelte
blob: 385d0a65fcefbb7d75dffbcb9a5e5720577caa71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<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>
        <a href="/book/badges" class="link" class:active={$page.url.pathname.startsWith("/book/badges")}>Badges</a>
        <a href="/book/notifications" class="link" class:active={$page.url.pathname.startsWith("/book/notifications")}>Notifications</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>