diff --git a/src/screens/StreamsScreen.tsx b/src/screens/StreamsScreen.tsx index bb869870..e0b08eed 100644 --- a/src/screens/StreamsScreen.tsx +++ b/src/screens/StreamsScreen.tsx @@ -1177,36 +1177,19 @@ export const StreamsScreen = () => { {type === 'movie' && metadata && ( - - - - {metadata.logo ? ( - - ) : ( - - {metadata.name} - - )} - - - + + {metadata.logo ? ( + + ) : ( + + {metadata.name} + + )} + )} @@ -1734,39 +1717,30 @@ const createStyles = (colors: any) => StyleSheet.create({ }, movieTitleContainer: { width: '100%', - height: 200, - backgroundColor: colors.black, + height: 120, + backgroundColor: colors.darkBackground, pointerEvents: 'box-none', - }, - movieTitleBackground: { - width: '100%', - height: '100%', - backgroundColor: colors.black, - }, - movieTitleGradient: { - flex: 1, justifyContent: 'center', - padding: 16, + paddingTop: Platform.OS === 'android' ? 45 : 35, }, movieTitleContent: { width: '100%', + height: '100%', alignItems: 'center', - marginTop: Platform.OS === 'android' ? 35 : 45, + justifyContent: 'center', }, movieLogo: { - width: width * 0.6, - height: 70, - marginBottom: 8, + width: '100%', + height: '100%', + maxWidth: width * 0.85, }, movieTitle: { color: colors.highEmphasis, fontSize: 28, fontWeight: '900', textAlign: 'center', - textShadowColor: 'rgba(0,0,0,0.75)', - textShadowOffset: { width: 0, height: 2 }, - textShadowRadius: 4, letterSpacing: -0.5, + paddingHorizontal: 20, }, streamsHeroRuntime: { flexDirection: 'row',