Fix tap target size of post dropdown menus (#1180)

This commit is contained in:
Paul Frazee
2023-08-15 15:49:52 -07:00
committed by GitHub
parent 0576caae36
commit 6ccfb1375a
8 changed files with 55 additions and 113 deletions
@@ -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,
},