diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-08-15 15:49:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-15 15:49:52 -0700 |
commit | 6ccfb1375a56d70778175788226a7fc715172379 (patch) | |
tree | e6f50ef9400081411ae3d1ec1970f3191d2783a3 /src/view/com/util/post-ctrls/RepostButton.web.tsx | |
parent | 0576caae361f2d7e29fbabf505339af9b7ea2f5f (diff) | |
download | voidsky-6ccfb1375a56d70778175788226a7fc715172379.tar.zst |
Fix tap target size of post dropdown menus (#1180)
Diffstat (limited to 'src/view/com/util/post-ctrls/RepostButton.web.tsx')
-rw-r--r-- | src/view/com/util/post-ctrls/RepostButton.web.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/view/com/util/post-ctrls/RepostButton.web.tsx b/src/view/com/util/post-ctrls/RepostButton.web.tsx index 4d2a3fcdd..eab6e2fef 100644 --- a/src/view/com/util/post-ctrls/RepostButton.web.tsx +++ b/src/view/com/util/post-ctrls/RepostButton.web.tsx @@ -52,6 +52,7 @@ export const RepostButton = ({ <View style={[ styles.control, + !big && styles.controlPad, (isReposted ? styles.reposted : defaultControlColor) as StyleProp<ViewStyle>, @@ -77,6 +78,9 @@ const styles = StyleSheet.create({ alignItems: 'center', gap: 4, }, + controlPad: { + padding: 5, + }, reposted: { color: colors.green3, }, |