Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/layouts/Base.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const ogImageURL = new URL(ogImage, Astro.site);
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content={description} />
<link rel="canonical" href={canonicalURL} />
<link rel="icon" type="image/svg+xml" href="/logos/wavekat-icon-light.svg" />
<link rel="icon" type="image/svg+xml" href="/logos/wavekat-icon-light.svg" media="(prefers-color-scheme: light)" />
<link rel="icon" type="image/svg+xml" href="/logos/wavekat-icon-dark.svg" media="(prefers-color-scheme: dark)" />
<title>{title}</title>
Expand Down
8 changes: 4 additions & 4 deletions src/layouts/Post.astro
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ const formatDate = (d: Date) =>
)}

<!-- Post content -->
<article class="prose prose-sm dark:prose-invert prose-gray max-w-none
<article class="prose prose-sm dark:prose-invert prose-gray max-w-none dark:text-gray-400
prose-headings:font-bold prose-headings:text-gray-900 dark:prose-headings:text-white
prose-a:text-gray-600 dark:prose-a:text-gray-300 prose-a:underline prose-a:underline-offset-2
prose-strong:text-gray-900 dark:prose-strong:text-white
prose-code:text-gray-700 dark:prose-code:text-gray-300
prose-a:text-gray-600 dark:prose-a:text-gray-400 prose-a:underline prose-a:underline-offset-2
prose-strong:text-gray-900 dark:prose-strong:text-gray-200
prose-code:text-gray-700 dark:prose-code:text-gray-400
prose-pre:bg-gray-50 dark:prose-pre:bg-wk-surface prose-pre:border prose-pre:border-gray-200 dark:prose-pre:border-white/10">
<slot />
</article>
Expand Down
Loading