about summary refs log tree commit diff
path: root/src/view/screens/CustomFeed.tsx
diff options
context:
space:
mode:
authorAnsh Nanda <anshnanda10@gmail.com>2023-05-16 18:39:02 -0700
committerAnsh Nanda <anshnanda10@gmail.com>2023-05-16 18:39:02 -0700
commitff3cc3b84d74453a1f5c7443c492d5d894e53b2f (patch)
tree1d2e32bc17275d84fa68d9a06ce0885c2f9bf00c /src/view/screens/CustomFeed.tsx
parent53ca0cd626cc71fea38fb0f59f68092ab406d143 (diff)
downloadvoidsky-ff3cc3b84d74453a1f5c7443c492d5d894e53b2f.tar.zst
fix dark mode styling
Diffstat (limited to 'src/view/screens/CustomFeed.tsx')
-rw-r--r--src/view/screens/CustomFeed.tsx3
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,
   },
 })