site: use three column layout

This commit is contained in:
Glen Huang
2025-10-07 18:35:53 +08:00
committed by Johannes Kirschbauer
parent 92f87e169c
commit 6614138fb8
8 changed files with 55 additions and 9 deletions

View File

@@ -8,7 +8,6 @@
{#each paths as path}
<li><a href={`/docs/${path}`}>{path}</a></li>
{/each}
<li><a href="/">Home</a></li>
</nav>
<div class="content">
{@render children()}
@@ -19,4 +18,8 @@
.container {
display: flex;
}
nav {
width: 300px;
flex: none;
}
</style>