fix: reign in padding on album view a bit

This commit is contained in:
Lei Nelissen
2023-04-23 23:37:48 +02:00
parent c8283fc580
commit e116e95236
2 changed files with 2 additions and 2 deletions

View File

@@ -89,7 +89,7 @@ const Album: React.FC = () => {
{album?.Similar?.length ? (
<>
<SubHeader>{t('similar-albums')}</SubHeader>
<ScrollView horizontal style={{ marginLeft: -24, marginRight: -24, marginTop: 8, marginBottom: 36 }} contentContainerStyle={{ paddingHorizontal: 24 }} showsHorizontalScrollIndicator={false}>
<ScrollView horizontal style={{ marginLeft: -24, marginRight: -24, marginTop: 8 }} contentContainerStyle={{ paddingHorizontal: 24 }} showsHorizontalScrollIndicator={false}>
{album.Similar.map((id) => (
<SimilarAlbum id={id} key={id} />
))}

View File

@@ -133,7 +133,7 @@ const TrackListView: React.FC<TrackListViewProps> = ({
<RefreshControl refreshing={isLoading} onRefresh={refresh} progressViewOffset={offsets.top} />
}
>
<View style={{ padding: 24, paddingTop: 32, paddingBottom: 64 }}>
<View style={{ padding: 24, paddingTop: 32, paddingBottom: 32 }}>
<AlbumImageContainer>
<CoverImage src={getImage(entityId)} />
</AlbumImageContainer>