fix: reign in padding on album view a bit
This commit is contained in:
@@ -89,7 +89,7 @@ const Album: React.FC = () => {
|
|||||||
{album?.Similar?.length ? (
|
{album?.Similar?.length ? (
|
||||||
<>
|
<>
|
||||||
<SubHeader>{t('similar-albums')}</SubHeader>
|
<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) => (
|
{album.Similar.map((id) => (
|
||||||
<SimilarAlbum id={id} key={id} />
|
<SimilarAlbum id={id} key={id} />
|
||||||
))}
|
))}
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ const TrackListView: React.FC<TrackListViewProps> = ({
|
|||||||
<RefreshControl refreshing={isLoading} onRefresh={refresh} progressViewOffset={offsets.top} />
|
<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>
|
<AlbumImageContainer>
|
||||||
<CoverImage src={getImage(entityId)} />
|
<CoverImage src={getImage(entityId)} />
|
||||||
</AlbumImageContainer>
|
</AlbumImageContainer>
|
||||||
|
|||||||
Reference in New Issue
Block a user