style(tv): match live tv header styling to home tab

This commit is contained in:
Fredrik Burmester
2026-01-26 19:59:30 +01:00
parent 246e0af0f6
commit 9d6a9decc9

View File

@@ -14,6 +14,7 @@ import { useScaledTVTypography } from "@/constants/TVTypography";
import { apiAtom, userAtom } from "@/providers/JellyfinProvider";
const HORIZONTAL_PADDING = 60;
const TOP_PADDING = 100;
const SECTION_GAP = 24;
type TabId =
@@ -220,7 +221,7 @@ export const TVLiveTVPage: React.FC = () => {
{/* Header with Title and Tabs */}
<View
style={{
paddingTop: insets.top + 60,
paddingTop: insets.top + TOP_PADDING,
paddingHorizontal: insets.left + HORIZONTAL_PADDING,
paddingBottom: 24,
}}
@@ -228,7 +229,7 @@ export const TVLiveTVPage: React.FC = () => {
{/* Title */}
<Text
style={{
fontSize: typography.title,
fontSize: typography.display,
fontWeight: "bold",
color: "#FFFFFF",
marginBottom: 24,