From 00452b51a8e26ea693b436af42685eb4dd819ad3 Mon Sep 17 00:00:00 2001 From: James Pine Date: Thu, 16 Apr 2026 03:12:09 -0700 Subject: [PATCH] style(changelog): make entry version headings bigger in settings UI The in-app changelog viewer rendered each entry's version number at the same size as body text (text-sm font-medium), so visually there was no clear anchor for where one release's notes ended and the next began. Bump the version heading to text-xl font-semibold tracking-tight and widen the bottom margin so each release reads as a proper section header. Co-Authored-By: Claude Opus 4.6 (1M context) --- app/src/components/ServerTab/ChangelogPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/components/ServerTab/ChangelogPage.tsx b/app/src/components/ServerTab/ChangelogPage.tsx index afb32b47..0d886e1c 100644 --- a/app/src/components/ServerTab/ChangelogPage.tsx +++ b/app/src/components/ServerTab/ChangelogPage.tsx @@ -182,8 +182,8 @@ function ChangelogEntryCard({ entry }: { entry: ChangelogEntry }) { return (
-
-

{entry.version}

+
+

{entry.version}

{entry.date && {entry.date}} {entry.version === 'Unreleased' && dev}