Update padding for EpisodeStreamsModal

Adjust padding for EpisodeStreamsModal on Android.
This commit is contained in:
AdityasahuX07 2025-12-21 18:47:42 +05:30 committed by GitHub
parent e91d78386a
commit 2c5e9967d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -170,7 +170,7 @@ export const EpisodeStreamsModal: React.FC<EpisodeStreamsModalProps> = ({
>
{/* Header */}
<View style={{
paddingTop: Platform.OS === 'ios' ? 60 : 10,
paddingTop: Platform.OS === 'ios' ? 60 : 15,
paddingHorizontal: 20,
paddingBottom: 20,
}}>
@ -271,4 +271,4 @@ export const EpisodeStreamsModal: React.FC<EpisodeStreamsModalProps> = ({
</Animated.View>
</View>
);
};
};