From 01fd552a0c6d64c43acf972895af4c58d58a5d41 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Mon, 29 Jun 2026 11:49:37 +0200 Subject: [PATCH] fix(tv): match season-select card font sizes to other TV sheets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The season title used typography.body (40) — larger than the sheet's own heading — and the episode count used callout. Other TV cards/sheets use callout for the primary label and callout-4 for secondary text. Align the season card to that convention. Claude-Session: https://claude.ai/code/session_016Hhu5DruGLPhdP4LAoy1Xd --- app/(auth)/tv-season-select-modal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/(auth)/tv-season-select-modal.tsx b/app/(auth)/tv-season-select-modal.tsx index 830fda34..3667d823 100644 --- a/app/(auth)/tv-season-select-modal.tsx +++ b/app/(auth)/tv-season-select-modal.tsx @@ -122,7 +122,7 @@ const TVSeasonToggleCard: React.FC = ({ style={[ styles.seasonTitle, { - fontSize: typography.body, + fontSize: typography.callout, color: focused ? "#000000" : "#FFFFFF", }, ]} @@ -137,7 +137,7 @@ const TVSeasonToggleCard: React.FC = ({ style={[ styles.episodeCount, { - fontSize: typography.callout, + fontSize: typography.callout - 4, color: focused ? "rgba(0,0,0,0.6)" : "rgba(255,255,255,0.6)", }, ]}