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/screens/Profile/Header/ProfileHeaderStandard.tsx | |
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/screens/Profile/Header/ProfileHeaderStandard.tsx')
-rw-r--r-- | src/screens/Profile/Header/ProfileHeaderStandard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Profile/Header/ProfileHeaderStandard.tsx b/src/screens/Profile/Header/ProfileHeaderStandard.tsx index b275b3191..2b6353b27 100644 --- a/src/screens/Profile/Header/ProfileHeaderStandard.tsx +++ b/src/screens/Profile/Header/ProfileHeaderStandard.tsx @@ -157,7 +157,7 @@ let ProfileHeaderStandard = ({ hideBackButton={hideBackButton} isPlaceholderProfile={isPlaceholderProfile}> <View - style={[a.px_lg, a.pt_md, a.pb_sm]} + style={[a.px_lg, a.pt_md, a.pb_sm, a.overflow_hidden]} pointerEvents={isIOS ? 'auto' : 'box-none'}> <View style={[ |