fix(tv): match season-select card font sizes to other TV sheets

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
This commit is contained in:
Fredrik Burmester
2026-06-29 11:49:37 +02:00
parent 427e70e7ef
commit 01fd552a0c

View File

@@ -122,7 +122,7 @@ const TVSeasonToggleCard: React.FC<TVSeasonToggleCardProps> = ({
style={[ style={[
styles.seasonTitle, styles.seasonTitle,
{ {
fontSize: typography.body, fontSize: typography.callout,
color: focused ? "#000000" : "#FFFFFF", color: focused ? "#000000" : "#FFFFFF",
}, },
]} ]}
@@ -137,7 +137,7 @@ const TVSeasonToggleCard: React.FC<TVSeasonToggleCardProps> = ({
style={[ style={[
styles.episodeCount, styles.episodeCount,
{ {
fontSize: typography.callout, fontSize: typography.callout - 4,
color: focused ? "rgba(0,0,0,0.6)" : "rgba(255,255,255,0.6)", color: focused ? "rgba(0,0,0,0.6)" : "rgba(255,255,255,0.6)",
}, },
]} ]}