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/post/Post.tsx | |
parent | 0576caae361f2d7e29fbabf505339af9b7ea2f5f (diff) | |
download | voidsky-6ccfb1375a56d70778175788226a7fc715172379.tar.zst |
Fix tap target size of post dropdown menus (#1180)
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index bf9437076..932b6cfd5 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -266,7 +266,9 @@ const PostLoaded = observer( </View> ) : undefined} {item.post.embed ? ( - <ContentHider moderation={item.moderation.embed} style={s.mb10}> + <ContentHider + moderation={item.moderation.embed} + style={styles.contentHider}> <PostEmbeds embed={item.post.embed} moderation={item.moderation.embed} @@ -315,8 +317,10 @@ const PostLoaded = observer( const styles = StyleSheet.create({ outer: { - padding: 10, + paddingTop: 10, paddingRight: 15, + paddingBottom: 5, + paddingLeft: 10, borderTopWidth: 1, }, layout: { @@ -336,7 +340,6 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', flexWrap: 'wrap', - paddingBottom: 8, }, translateLink: { marginBottom: 12, @@ -350,7 +353,7 @@ const styles = StyleSheet.create({ borderLeftColor: colors.gray2, }, contentHider: { - marginBottom: 6, + marginBottom: 2, }, contentHiderChild: { marginTop: 6, |