diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/LoadingPlaceholder.tsx | 2 | ||||
-rw-r--r-- | src/view/com/util/PostCtrls.tsx | 14 |
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> |