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/PinnedFeeds.tsx | |
parent | 53ca0cd626cc71fea38fb0f59f68092ab406d143 (diff) | |
download | voidsky-ff3cc3b84d74453a1f5c7443c492d5d894e53b2f.tar.zst |
fix dark mode styling
Diffstat (limited to 'src/view/screens/PinnedFeeds.tsx')
-rw-r--r-- | src/view/screens/PinnedFeeds.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/screens/PinnedFeeds.tsx b/src/view/screens/PinnedFeeds.tsx index 2a0e3deff..f87f8d284 100644 --- a/src/view/screens/PinnedFeeds.tsx +++ b/src/view/screens/PinnedFeeds.tsx @@ -91,7 +91,11 @@ export const PinnedFeeds = withAuthRequired( accessibilityRole="button" onLongPress={drag} style={styles.itemContainer}> - <FontAwesomeIcon icon="bars" size={20} style={styles.icon} /> + <FontAwesomeIcon + icon="bars" + size={20} + style={[styles.icon, pal.text]} + /> <SavedFeedItem item={item} savedFeeds={savedFeeds} /> </Pressable> </ShadowDecorator> |