blob: aeed0d4ebe0e43c497eeaca3bfccde548b316af1 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<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>
|