diff options
author | Hailey <me@haileyok.com> | 2024-05-29 20:37:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 04:37:45 +0100 |
commit | 4cc55f05c2f8dda903733e5a7bb1442a107d116d (patch) | |
tree | bfa582227b4f3fc02e7927ecf245794450b9c3fe /src | |
parent | 9edb4879494b348616caca6999ee89658f439c49 (diff) | |
download | voidsky-4cc55f05c2f8dda903733e5a7bb1442a107d116d.tar.zst |
Use a margin of -6 instead of -5 for PostCtrls 😵💫 (#4272)
* -6 instead of -5 😵💫 * same here
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/LoadingPlaceholder.tsx | 2 | ||||
-rw-r--r-- | src/view/com/util/post-ctrls/PostCtrls.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/util/LoadingPlaceholder.tsx b/src/view/com/util/LoadingPlaceholder.tsx index 882f7216b..33a59be6d 100644 --- a/src/view/com/util/LoadingPlaceholder.tsx +++ b/src/view/com/util/LoadingPlaceholder.tsx @@ -67,7 +67,7 @@ export function PostLoadingPlaceholder({ <LoadingPlaceholder width="95%" height={6} style={{marginBottom: 8}} /> <LoadingPlaceholder width="80%" height={6} style={{marginBottom: 11}} /> <View style={styles.postCtrls}> - <View style={[styles.postCtrl, {marginLeft: -5}]}> + <View style={[styles.postCtrl, {marginLeft: -6}]}> <View style={styles.postBtn}> <Bubble style={[ diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index 2b0220842..c90a723a0 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -206,7 +206,7 @@ let PostCtrls = ({ <View style={[a.flex_row, a.justify_between, a.align_center, style]}> <View style={[ - big ? a.align_center : [a.flex_1, a.align_start, {marginLeft: -5}], + big ? a.align_center : [a.flex_1, a.align_start, {marginLeft: -6}], post.viewer?.replyDisabled ? {opacity: 0.5} : undefined, ]}> <Pressable |