diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-08-12 02:57:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-11 18:57:32 -0500 |
commit | 86b53e7bcc870b73edf10680efe5878ae14e0cbc (patch) | |
tree | fa71499f20c09e09d554fcdc4746c5e7a0f45022 /src/components/PostControls/DiscoverDebug.tsx | |
parent | 3ce14b0c6fbc16d8cdb2cd7354ab3834bf6477ad (diff) | |
download | voidsky-86b53e7bcc870b73edf10680efe5878ae14e0cbc.tar.zst |
set maxwidth on feed context string (#8817)
Diffstat (limited to 'src/components/PostControls/DiscoverDebug.tsx')
-rw-r--r-- | src/components/PostControls/DiscoverDebug.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/PostControls/DiscoverDebug.tsx b/src/components/PostControls/DiscoverDebug.tsx index 403b50cca..02f55b799 100644 --- a/src/components/PostControls/DiscoverDebug.tsx +++ b/src/components/PostControls/DiscoverDebug.tsx @@ -32,8 +32,7 @@ export function DiscoverDebug({ hitSlop={10} style={[ a.absolute, - a.bottom_0, - {zIndex: 1000}, + {zIndex: 1000, maxWidth: 65, bottom: -4}, gtMobile ? a.right_0 : a.left_0, ]} onPress={e => { @@ -42,6 +41,7 @@ export function DiscoverDebug({ Toast.show(t`Copied to clipboard`, 'clipboard-check') }}> <Text + numberOfLines={1} style={{ color: theme.palette.contrast_400, fontSize: 7, |