mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-29 17:20:30 +01:00
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:
@@ -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)",
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user