about summary refs log tree commit diff
path: root/src/view/com/post/Post.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r--src/view/com/post/Post.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx
index 3ed56ca1f..005ea8c7f 100644
--- a/src/view/com/post/Post.tsx
+++ b/src/view/com/post/Post.tsx
@@ -147,7 +147,7 @@ export const Post = observer(function Post({uri}: {uri: string}) {
             <RichText
               text={record.text}
               entities={record.entities}
-              style={[s.f16, s['lh16-1.3']]}
+              style={styles.postText}
             />
           </View>
           <PostCtrls
@@ -191,4 +191,10 @@ const styles = StyleSheet.create({
     flexWrap: 'wrap',
     paddingBottom: 8,
   },
+  postText: {
+    fontFamily: 'Helvetica Neue',
+    fontSize: 17,
+    lineHeight: 22.1, // 1.3 of 17px
+    minHeight: 28,
+  },
 })