diff options
author | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-16 18:39:02 -0700 |
---|---|---|
committer | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-16 18:39:02 -0700 |
commit | ff3cc3b84d74453a1f5c7443c492d5d894e53b2f (patch) | |
tree | 1d2e32bc17275d84fa68d9a06ce0885c2f9bf00c /src/view/screens/CustomFeed.tsx | |
parent | 53ca0cd626cc71fea38fb0f59f68092ab406d143 (diff) | |
download | voidsky-ff3cc3b84d74453a1f5c7443c492d5d894e53b2f.tar.zst |
fix dark mode styling
Diffstat (limited to 'src/view/screens/CustomFeed.tsx')
-rw-r--r-- | src/view/screens/CustomFeed.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/view/screens/CustomFeed.tsx b/src/view/screens/CustomFeed.tsx index ec39b27d3..615a63261 100644 --- a/src/view/screens/CustomFeed.tsx +++ b/src/view/screens/CustomFeed.tsx @@ -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, }, }) |