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 ? (
|
||||
<>
|
||||
<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} />
|
||||
))}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user