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>2022-11-18 11:37:12 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-11-18 11:37:12 -0600
commit2f9dd131f9d2db2e5d66c20f1ff576f292cdd46a (patch)
tree0b366d5bd1874622aef5c2f4567b37087dd5fa47 /src/view/com/post-thread/PostThreadItem.tsx
parent5efd0a5b7eaf3ec274010e3bb5ad3845f855ba71 (diff)
downloadvoidsky-2f9dd131f9d2db2e5d66c20f1ff576f292cdd46a.tar.zst
Spacing and sizing fixes
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r--src/view/com/post-thread/PostThreadItem.tsx14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx
index fcfc99e7d..0c4565c51 100644
--- a/src/view/com/post-thread/PostThreadItem.tsx
+++ b/src/view/com/post-thread/PostThreadItem.tsx
@@ -163,8 +163,8 @@ export const PostThreadItem = observer(function PostThreadItem({
                   style={styles.expandedInfoItem}
                   href={repostsHref}
                   title={repostsTitle}>
-                  <Text style={[s.gray5, s.semiBold, s.f16]}>
-                    <Text style={[s.bold, s.black, s.f16]}>
+                  <Text style={[s.gray5, s.semiBold, s.f18]}>
+                    <Text style={[s.bold, s.black, s.f18]}>
                       {item.repostCount}
                     </Text>{' '}
                     {pluralize(item.repostCount, 'repost')}
@@ -178,8 +178,8 @@ export const PostThreadItem = observer(function PostThreadItem({
                   style={styles.expandedInfoItem}
                   href={upvotesHref}
                   title={upvotesTitle}>
-                  <Text style={[s.gray5, s.semiBold, s.f16]}>
-                    <Text style={[s.bold, s.black, s.f16]}>
+                  <Text style={[s.gray5, s.semiBold, s.f18]}>
+                    <Text style={[s.bold, s.black, s.f18]}>
                       {item.upvoteCount}
                     </Text>{' '}
                     {pluralize(item.upvoteCount, 'upvote')}
@@ -193,8 +193,8 @@ export const PostThreadItem = observer(function PostThreadItem({
                   style={styles.expandedInfoItem}
                   href={downvotesHref}
                   title={downvotesTitle}>
-                  <Text style={[s.gray5, s.semiBold, s.f16]}>
-                    <Text style={[s.bold, s.black, s.f16]}>
+                  <Text style={[s.gray5, s.semiBold, s.f18]}>
+                    <Text style={[s.bold, s.black, s.f18]}>
                       {item.downvoteCount}
                     </Text>{' '}
                     {pluralize(item.downvoteCount, 'downvote')}
@@ -363,13 +363,13 @@ const styles = StyleSheet.create({
     fontFamily: 'Helvetica Neue',
     fontSize: 17,
     lineHeight: 22.1, // 1.3 of 17px
-    minHeight: 28,
   },
   postTextContainer: {
     flexDirection: 'row',
     alignItems: 'center',
     flexWrap: 'wrap',
     paddingBottom: 8,
+    minHeight: 36,
   },
   postTextLarge: {
     fontSize: 24,