diff options
author | Eric Bailey <git@esb.lol> | 2024-10-07 11:28:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 11:28:54 -0500 |
commit | f5094240e7421a2948aa1a4f25a41e4a6658a1da (patch) | |
tree | 687d60dd0437864585c5a44a7aa98f1969189a9d /src | |
parent | c5fef1b9b59b7203e6f44747bc07040b0eeb5bcc (diff) | |
download | voidsky-f5094240e7421a2948aa1a4f25a41e4a6658a1da.tar.zst |
* Reduce post reason icon size & offset (#5522) * Make x margin within pin icon the same * Reduce post reason icon size and offset * Use existing pin --------- Co-authored-by: futur <me@futuristick.ca>
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/posts/FeedItem.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index 28b8f4ceb..fc640b2ad 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -299,8 +299,8 @@ let FeedItemInner = ({ onBeforePress={onOpenReposter}> <RepostIcon style={{color: pal.colors.textLight, marginRight: 3}} - width={14} - height={14} + width={13} + height={13} /> <Text type="sm-bold" @@ -343,8 +343,8 @@ let FeedItemInner = ({ <View style={styles.includeReason}> <PinIcon style={{color: pal.colors.textLight, marginRight: 3}} - width={14} - height={14} + width={13} + height={13} /> <Text type="sm-bold" @@ -604,7 +604,7 @@ const styles = StyleSheet.create({ alignItems: 'center', marginTop: 2, marginBottom: 2, - marginLeft: -18, + marginLeft: -16, }, layout: { flexDirection: 'row', |