From 3b0c593c6cacdd0c3a87b69c17626255fb61e983 Mon Sep 17 00:00:00 2001 From: austinried <4966622+austinried@users.noreply.github.com> Date: Sun, 18 Jul 2021 16:55:22 +0900 Subject: [PATCH] artist list visual tweaks --- app/screens/LibraryArtists.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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, }, })