mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
Adjust movie title container height and padding for improved layout in StreamsScreen
This update modifies the height of the movie title container from 120 to 140 and adjusts the padding for Android devices from 45 to 65. These changes enhance the visual consistency and responsiveness of the layout, contributing to a better user experience.
This commit is contained in:
parent
ddf8d007b7
commit
a5799c2f62
1 changed files with 2 additions and 2 deletions
|
|
@ -1717,11 +1717,11 @@ const createStyles = (colors: any) => StyleSheet.create({
|
|||
},
|
||||
movieTitleContainer: {
|
||||
width: '100%',
|
||||
height: 120,
|
||||
height: 140,
|
||||
backgroundColor: colors.darkBackground,
|
||||
pointerEvents: 'box-none',
|
||||
justifyContent: 'center',
|
||||
paddingTop: Platform.OS === 'android' ? 45 : 35,
|
||||
paddingTop: Platform.OS === 'android' ? 65 : 35,
|
||||
},
|
||||
movieTitleContent: {
|
||||
width: '100%',
|
||||
|
|
|
|||
Loading…
Reference in a new issue