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/posts/FeedItem.tsx | |
parent | 0576caae361f2d7e29fbabf505339af9b7ea2f5f (diff) | |
download | voidsky-6ccfb1375a56d70778175788226a7fc715172379.tar.zst |
Fix tap target size of post dropdown menus (#1180)
Diffstat (limited to 'src/view/com/posts/FeedItem.tsx')
-rw-r--r-- | src/view/com/posts/FeedItem.tsx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index 60dff9153..01dd00d00 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -143,7 +143,7 @@ export const FeedItem = observer(function ({ borderColor: pal.colors.border, paddingBottom: isThreadLastChild || (!isThreadChild && !isThreadParent) - ? 12 + ? 6 : undefined, }, isThreadChild ? styles.outerSmallTop : undefined, @@ -274,7 +274,6 @@ export const FeedItem = observer(function ({ testID="contentHider-post" moderation={item.moderation.content} ignoreMute - style={styles.contentHider} childContainerStyle={styles.contentHiderChild}> <PostAlerts moderation={item.moderation.content} @@ -312,7 +311,6 @@ export const FeedItem = observer(function ({ )} </ContentHider> <PostCtrls - style={styles.ctrls} itemUri={itemUri} itemCid={itemCid} itemHref={itemHref} @@ -385,9 +383,6 @@ const styles = StyleSheet.create({ flexWrap: 'wrap', paddingBottom: 4, }, - contentHider: { - marginBottom: 6, - }, contentHiderChild: { marginTop: 6, }, @@ -397,7 +392,4 @@ const styles = StyleSheet.create({ translateLink: { marginBottom: 6, }, - ctrls: { - marginTop: 4, - }, }) |