diff options
author | João Ferreiro <ferreiro@pinkroom.dev> | 2022-12-15 15:39:46 +0000 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-19 19:25:58 -0600 |
commit | 469b05c4be712acad389f6fb0c0b65f32466a36a (patch) | |
tree | 9e832a1689d0c4e41b34a322c72544d543c98287 /src/view/com/post-thread/PostThreadItem.tsx | |
parent | 982f46376b3dcd2c9a072789d6db7eca3ea2bf11 (diff) | |
download | voidsky-469b05c4be712acad389f6fb0c0b65f32466a36a.tar.zst |
fixing remaining text colors on android
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index ec44a380a..e54931532 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -124,7 +124,7 @@ export const PostThreadItem = observer(function PostThreadItem({ style={styles.metaItem} href={authorHref} title={authorTitle}> - <Text style={[s.f16, s.bold]} numberOfLines={1}> + <Text style={[s.f16, s.bold, s.black]} numberOfLines={1}> {item.author.displayName || item.author.handle} </Text> </Link> @@ -390,6 +390,7 @@ const styles = StyleSheet.create({ fontFamily: 'System', fontSize: 16, lineHeight: 20.8, // 1.3 of 16px + color: 'black', }, postTextContainer: { flexDirection: 'row', |