diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-05 16:12:06 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-05 16:12:06 -0500 |
commit | ff9161d8e70fc2e6d066fd045bd2a380c63cb46c (patch) | |
tree | d21be07f1f54c4df8dbef152788359cbb9ba1315 /src/view/com/post/Post.tsx | |
parent | 5d6ab1f5485ab419e2c2155d91a9585bea8ff219 (diff) | |
download | voidsky-ff9161d8e70fc2e6d066fd045bd2a380c63cb46c.tar.zst |
Sizing and spacing fixes based on on-device testing
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 91088e21b..37d25a7b1 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -97,12 +97,12 @@ export const Post = observer(function Post({uri}: {uri: string}) { <View style={styles.layoutContent}> <View style={styles.meta}> <Link style={styles.metaItem} href={authorHref} title={authorTitle}> - <Text style={[s.f15, s.bold]}>{item.author.displayName}</Text> + <Text style={[s.f16, s.bold]}>{item.author.displayName}</Text> </Link> <Link style={styles.metaItem} href={authorHref} title={authorTitle}> - <Text style={[s.f14, s.gray5]}>@{item.author.handle}</Text> + <Text style={[s.f15, s.gray5]}>@{item.author.handle}</Text> </Link> - <Text style={[styles.metaItem, s.f14, s.gray5]}> + <Text style={[styles.metaItem, s.f15, s.gray5]}> · {ago(item.indexedAt)} </Text> </View> @@ -123,7 +123,7 @@ export const Post = observer(function Post({uri}: {uri: string}) { <RichText text={record.text} entities={record.entities} - style={[s.f15, s['lh15-1.3']]} + style={[s.f16, s['lh16-1.3']]} /> </View> <PostCtrls |