From 98177018c43f1f1c855482687bd9c252110e760f Mon Sep 17 00:00:00 2001 From: Eason WaveKat Date: Tue, 9 Jun 2026 18:28:03 +1200 Subject: [PATCH] fix(voice): h3 rendered larger than h2 on changelog The changelog forced prose-h2 to text-base but left h3 at the Tailwind Typography prose-sm default (~18px), so version headings (h3) displayed larger than the date headings (h2) above them. Add an explicit prose-h3 size (text-sm) to restore h1 > h2 > h3 order. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/pages/voice/changelog.astro | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/voice/changelog.astro b/src/pages/voice/changelog.astro index a95c343..5646247 100644 --- a/src/pages/voice/changelog.astro +++ b/src/pages/voice/changelog.astro @@ -34,6 +34,7 @@ const description = prose-headings:font-bold prose-headings:text-gray-900 dark:prose-headings:text-white prose-h1:text-2xl prose-h1:leading-snug prose-h1:mb-3 prose-h2:text-base prose-h2:mt-8 + prose-h3:text-sm prose-h3:mt-4 prose-h3:mb-2 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-800 dark:prose-code:text-gray-200 prose-code:bg-gray-100 dark:prose-code:bg-white/10