diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-11-22 18:56:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-22 18:56:07 +0000 |
commit | bc2a3aee0cf9e6ca2c9b2d7c0b6ad681495cf440 (patch) | |
tree | e8cfccd3761840d285236c9c99e1e3fb84b5fecc | |
parent | 378107492194a5f408747790015c4ca1d624302b (diff) | |
download | voidsky-bc2a3aee0cf9e6ca2c9b2d7c0b6ad681495cf440.tar.zst |
fix avi follow deadzone (#6639)
-rw-r--r-- | src/view/com/posts/AviFollowButton.tsx | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/view/com/posts/AviFollowButton.tsx b/src/view/com/posts/AviFollowButton.tsx index 269d4eb5a..53e2146f4 100644 --- a/src/view/com/posts/AviFollowButton.tsx +++ b/src/view/com/posts/AviFollowButton.tsx @@ -84,25 +84,22 @@ export function AviFollowButton({ {!isFollowing && ( <Button label={_(msg`Open ${name} profile shortcut menu`)} - hitSlop={{ - top: 0, - left: 0, - right: 5, - bottom: 5, - }} style={[ a.rounded_full, a.absolute, { - height: 30, - width: 30, bottom: -7, right: -7, }, ]}> <NativeDropdown items={items}> <View - style={[a.h_full, a.w_full, a.justify_center, a.align_center]}> + style={[ + {width: 30, height: 30}, + a.align_center, + a.justify_center, + a.rounded_full, + ]}> <View style={[ a.rounded_full, |