diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-08-08 18:04:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 18:04:40 +0100 |
commit | e7a0055a8514a134d3fc897b5058d14070518b2e (patch) | |
tree | b45258b04f94fc607b141c52f9cd9227dbf07f6e /src/view/com/notifications | |
parent | ae25cb33919c2d308d24d2ac20d884871ad71ce3 (diff) | |
download | voidsky-e7a0055a8514a134d3fc897b5058d14070518b2e.tar.zst |
Fix overflow on posts (#4899)
* overflow posts, via contentHider * margin->padding for a bit more leeway * overflow notifications * overflow on header * revert from contenthider, put on text in all places * fix zalgo text in handle in composer --------- Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com>
Diffstat (limited to 'src/view/com/notifications')
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index 1afc0f9d3..b591b4b7f 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -253,6 +253,7 @@ let FeedItem = ({ borderColor: pal.colors.unreadNotifBorder, }, {borderTopWidth: hideTopBorder ? 0 : StyleSheet.hairlineWidth}, + a.overflow_hidden, ]} href={itemHref} noFeedback @@ -545,7 +546,7 @@ function ExpandedAuthorsList({ }, [heightInterp, visible]) return ( - <Animated.View style={[heightStyle, styles.overflowHidden]}> + <Animated.View style={[a.overflow_hidden, heightStyle]}> {visible && authors.map(author => ( <NewLink @@ -641,9 +642,6 @@ function AdditionalPostText({post}: {post?: AppBskyFeedDefs.PostView}) { } const styles = StyleSheet.create({ - overflowHidden: { - overflow: 'hidden', - }, pointer: isWeb ? { // @ts-ignore web only |