about summary refs log tree commit diff
path: root/src/view/com/post-thread/PostThreadItem.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-02-24 11:40:43 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-02-24 11:40:43 -0600
commitd97e2335181fc4d280cb6e4fb67cec8509e1569b (patch)
tree5804a5b878a9243a582879652f18d7dfb3951d15 /src/view/com/post-thread/PostThreadItem.tsx
parent80bd3398d768b9529d97d48579555358b35616db (diff)
downloadvoidsky-d97e2335181fc4d280cb6e4fb67cec8509e1569b.tar.zst
Fixes to lineheight on web to counteract emoji issues
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r--src/view/com/post-thread/PostThreadItem.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx
index cd3a49d64..98d44267d 100644
--- a/src/view/com/post-thread/PostThreadItem.tsx
+++ b/src/view/com/post-thread/PostThreadItem.tsx
@@ -146,7 +146,11 @@ export const PostThreadItem = observer(function PostThreadItem({
                     style={styles.metaItem}
                     href={authorHref}
                     title={authorTitle}>
-                    <Text type="xl-bold" style={[pal.text]} numberOfLines={1}>
+                    <Text
+                      type="xl-bold"
+                      style={[pal.text]}
+                      numberOfLines={1}
+                      lineHeight={1.2}>
                       {item.post.author.displayName || item.post.author.handle}
                     </Text>
                   </Link>