about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-11-20 16:29:43 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-11-20 16:29:43 -0600
commit7e487fd5ae053ebb4373b85f1b3d7aa66f8a0241 (patch)
tree85c3f5e64bfb8d17782c8ff6dd69a938f979fbc0 /src
parentf43b24d40542ab24e2f68ee3c8f1a2a5d57fe478 (diff)
downloadvoidsky-7e487fd5ae053ebb4373b85f1b3d7aa66f8a0241.tar.zst
Adjust control alignment
Diffstat (limited to 'src')
-rw-r--r--src/view/com/util/LoadingPlaceholder.tsx2
-rw-r--r--src/view/com/util/PostCtrls.tsx14
2 files changed, 8 insertions, 8 deletions
diff --git a/src/view/com/util/LoadingPlaceholder.tsx b/src/view/com/util/LoadingPlaceholder.tsx
index ed94c5502..5ccd1bd14 100644
--- a/src/view/com/util/LoadingPlaceholder.tsx
+++ b/src/view/com/util/LoadingPlaceholder.tsx
@@ -100,7 +100,7 @@ export function PostLoadingPlaceholder({
             <FontAwesomeIcon style={s.gray3} icon="retweet" size={20} />
           </View>
           <View style={s.flex1}>
-            <UpIcon style={s.gray3} size={18} strokeWidth={1.7} />
+            <UpIcon style={s.gray3} size={19} strokeWidth={1.7} />
           </View>
           <View style={s.flex1}></View>
         </View>
diff --git a/src/view/com/util/PostCtrls.tsx b/src/view/com/util/PostCtrls.tsx
index b22475086..144351d85 100644
--- a/src/view/com/util/PostCtrls.tsx
+++ b/src/view/com/util/PostCtrls.tsx
@@ -61,7 +61,7 @@ export function PostCtrls(opts: PostCtrlsOpts) {
             icon={['far', 'comment']}
             size={16}
           />
-          <Text style={[s.gray5, s.ml5, s.f16]}>{opts.replyCount}</Text>
+          <Text style={[s.gray5, s.ml5, s.f17]}>{opts.replyCount}</Text>
         </TouchableOpacity>
       </View>
       <View style={s.flex1}>
@@ -80,8 +80,8 @@ export function PostCtrls(opts: PostCtrlsOpts) {
           <Text
             style={
               opts.isReposted
-                ? [s.bold, s.green3, s.f16, s.ml5]
-                : [s.gray5, s.f16, s.ml5]
+                ? [s.bold, s.green3, s.f17, s.ml5]
+                : [s.gray5, s.f17, s.ml5]
             }>
             {opts.repostCount}
           </Text>
@@ -93,16 +93,16 @@ export function PostCtrls(opts: PostCtrlsOpts) {
           onPress={onPressToggleUpvoteWrapper}>
           <Animated.View style={anim2Style}>
             {opts.isUpvoted ? (
-              <UpIconSolid style={styles.ctrlIconUpvoted} size={18} />
+              <UpIconSolid style={[styles.ctrlIconUpvoted]} size={19} />
             ) : (
-              <UpIcon style={styles.ctrlIcon} size={18} strokeWidth={1.7} />
+              <UpIcon style={[styles.ctrlIcon]} size={20} strokeWidth={1.5} />
             )}
           </Animated.View>
           <Text
             style={
               opts.isUpvoted
-                ? [s.bold, s.red3, s.f16, s.ml5]
-                : [s.gray5, s.f16, s.ml5]
+                ? [s.bold, s.red3, s.f17, s.ml5]
+                : [s.gray5, s.f17, s.ml5]
             }>
             {opts.upvoteCount}
           </Text>