fixed font link for subpages; reduced width of devlog posts; reduced height of banner; removed old banner

This commit is contained in:
2025-12-30 19:03:57 +00:00
parent 3e90dbdc80
commit b8ed25ae65
10 changed files with 220 additions and 119 deletions

View File

@@ -1,6 +1,6 @@
<script>
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import ContentSidebar from "$lib/content-sidebar.svelte";
import Content from "$lib/content.svelte";
import TableOfContents from "$lib/table-of-contents.svelte";
export let data;
@@ -19,12 +19,12 @@
bannerAlt="{data.bannerAlt}"
/>
<ContentSidebar>
<Content useContentWidth>
<TableOfContents slot="side-left" />
<TableOfContents disableStickyScrolling />
<div slot="main">
<svelte:component this={data.content} />
</div>
<!-- <div slot="main"> -->
<svelte:component this={data.content} />
<!-- </div> -->
</ContentSidebar>
</Content>