mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 09:09:29 +01:00
artist list visual tweaks
This commit is contained in:
parent
e6c76776a3
commit
3b0c593c6c
@ -15,7 +15,7 @@ const ArtistItem: React.FC<{ item: Artist }> = ({ item }) => {
|
||||
|
||||
return (
|
||||
<Pressable style={styles.item} onPress={() => navigation.navigate('ArtistView', { id: item.id, title: item.name })}>
|
||||
<ArtistArt id={item.id} width={56} height={56} />
|
||||
<ArtistArt id={item.id} width={70} height={70} />
|
||||
<Text style={styles.title}>{item.name}</Text>
|
||||
</Pressable>
|
||||
)
|
||||
@ -59,13 +59,13 @@ const styles = StyleSheet.create({
|
||||
flexDirection: 'row',
|
||||
alignItems: 'center',
|
||||
marginVertical: 6,
|
||||
marginLeft: 6,
|
||||
marginLeft: 10,
|
||||
},
|
||||
title: {
|
||||
fontFamily: font.regular,
|
||||
fontFamily: font.semiBold,
|
||||
fontSize: 16,
|
||||
color: colors.text.primary,
|
||||
marginLeft: 12,
|
||||
marginLeft: 14,
|
||||
},
|
||||
})
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user