diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index de08af74..bc7b7a7e 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -349,6 +349,7 @@ const styles = StyleSheet.create({ paddingLeft: 10, paddingRight: 15, cursor: 'pointer', + overflow: 'hidden', }, outerSmallTop: { borderTopWidth: 0, diff --git a/src/view/com/util/moderation/ContentHider.tsx b/src/view/com/util/moderation/ContentHider.tsx index 6cf1cefd..4f917844 100644 --- a/src/view/com/util/moderation/ContentHider.tsx +++ b/src/view/com/util/moderation/ContentHider.tsx @@ -29,7 +29,7 @@ export function ContentHider({ if (!moderation.blur || (ignoreMute && moderation.cause?.type === 'muted')) { return ( - + {children} ) @@ -37,7 +37,7 @@ export function ContentHider({ const desc = describeModerationCause(moderation.cause, 'content') return ( - + { if (!moderation.noOverride) { @@ -90,6 +90,9 @@ export function ContentHider({ } const styles = StyleSheet.create({ + outer: { + overflow: 'hidden', + }, cover: { flexDirection: 'row', alignItems: 'center',