fix dark mode styling

This commit is contained in:
Ansh Nanda 2023-05-16 18:39:02 -07:00
parent 53ca0cd626
commit ff3cc3b84d
3 changed files with 19 additions and 9 deletions

View file

@ -81,7 +81,7 @@ export const CustomFeed = withAuthRequired(
currentFeed?.like()
}
}}
style={[styles.likeButton]}>
style={[styles.likeButton, pal.viewLight]}>
<Text style={[pal.text, s.semiBold]}>
{currentFeed?.data.likeCount}
</Text>
@ -143,7 +143,6 @@ const styles = StyleSheet.create({
paddingVertical: 4,
paddingHorizontal: 8,
borderRadius: 24,
backgroundColor: colors.gray1,
gap: 4,
},
})