diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-28 17:38:58 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | 8dc074c47798f69d886ed6eec7b8cb01171aced8 (patch) | |
tree | e8f4d7232c7efc71089e0fd2250c3c4a3bf640e2 /src | |
parent | da47cd0d1b8aac5a19c753a08fdcdf2006cd7eec (diff) | |
download | voidsky-8dc074c47798f69d886ed6eec7b8cb01171aced8.tar.zst |
fix(ui): profile name and description overflowing on web
Diffstat (limited to 'src')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 2 | ||||
-rw-r--r-- | src/components/ProfileCard.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 6cb10a523..1566db1bf 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -313,7 +313,7 @@ export function ProfileGrid({ moderationOpts={moderationOpts} size={88} /> - <View style={[a.flex_col, a.align_center]}> + <View style={[a.flex_col, a.align_center, a.max_w_full]}> <ProfileCard.Name profile={profile} moderationOpts={moderationOpts} diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index 65e20ba9a..f12d922fd 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -282,7 +282,7 @@ export function Name({ ) const verification = useSimpleVerificationState({profile}) return ( - <View style={[a.flex_row, a.align_center]}> + <View style={[a.flex_row, a.align_center, a.max_w_full]}> <Text emoji style={[ |