diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-19 19:43:28 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-19 19:43:28 -0600 |
commit | 0401dfc5d3d0f40529aab75aeaacdb3633522f59 (patch) | |
tree | e5dba200c7013675e0f99b2f3894cbe1db3cb1f6 /src/view/com/notifications/FeedItem.tsx | |
parent | 19d5496bfc5cdc913c5b84fd7ef5a4d330c72d2c (diff) | |
download | voidsky-0401dfc5d3d0f40529aab75aeaacdb3633522f59.tar.zst |
A couple more android updates
Diffstat (limited to 'src/view/com/notifications/FeedItem.tsx')
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index e504ff39b..c71bf969a 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -166,7 +166,7 @@ export const FeedItem = observer(function FeedItem({ style={styles.metaItem} href={authors[0].href} title={`@${authors[0].handle}`}> - <Text style={[s.f15, s.bold]}> + <Text style={[s.f15, s.bold, s.black]}> {authors[0].displayName || authors[0].handle} </Text> </Link> @@ -265,9 +265,11 @@ const styles = StyleSheet.create({ }, metaItem: { paddingRight: 3, + color: colors.black, }, postText: { paddingBottom: 5, + color: colors.black, }, addedContainer: { |