diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-25 17:19:41 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | f35dc19a48966cb57c9d80b84267ec98b7d5c11b (patch) | |
tree | 08388232e64d93b51266106109c3b0c3608a75dc /src | |
parent | 4e507caa7c5c11c41d44364270180fb4186235d1 (diff) | |
download | voidsky-f35dc19a48966cb57c9d80b84267ec98b7d5c11b.tar.zst |
feat(ui): update SuggestedFollowPlaceholder to match new design
Diffstat (limited to 'src')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 70e025a94..f2caddd74 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -66,12 +66,14 @@ export function SuggestedFollowPlaceholder() { const t = useTheme() return ( <CardOuter style={[a.gap_md, t.atoms.border_contrast_low]}> - <ProfileCard.Header> - <ProfileCard.AvatarPlaceholder /> - <ProfileCard.NameAndHandlePlaceholder /> - </ProfileCard.Header> - - <ProfileCard.DescriptionPlaceholder numberOfLines={2} /> + <View style={[a.flex_col, a.align_center, a.gap_sm]}> + <ProfileCard.AvatarPlaceholder size={88} /> + <ProfileCard.NamePlaceholder /> + <ProfileCard.DescriptionPlaceholder + numberOfLines={2} + style={[a.align_center, a.flex, a.self_stretch]} + /> + </View> </CardOuter> ) } |