diff --git a/app/screens/LibraryArtists.tsx b/app/screens/LibraryArtists.tsx index 54a2f21..e1700bb 100644 --- a/app/screens/LibraryArtists.tsx +++ b/app/screens/LibraryArtists.tsx @@ -15,7 +15,7 @@ const ArtistItem: React.FC<{ item: Artist }> = ({ item }) => { return ( navigation.navigate('ArtistView', { id: item.id, title: item.name })}> - + {item.name} ) @@ -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, }, })