diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-25 16:26:25 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | 48f670f26ab9d2578958ba4d9805b3e52212edbb (patch) | |
tree | 290f2141bc633db7b899249867edabbfc9123406 | |
parent | 955a864245b5da81b02363d6a2d69ffa1e6f27a3 (diff) | |
download | voidsky-48f670f26ab9d2578958ba4d9805b3e52212edbb.tar.zst |
fix(ui): follow button should always be pushed to the bottom on the profile card
-rw-r--r-- | src/components/FeedInterstitials.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index b54c6622c..7cc3a92d9 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -287,7 +287,14 @@ export function ProfileGrid({ t.atoms.shadow_sm, ]}> <ProfileCard.Outer> - <View style={[a.flex_col, a.align_center, a.gap_sm, a.pb_sm]}> + <View + style={[ + a.flex_col, + a.align_center, + a.gap_sm, + a.pb_sm, + a.mb_auto, + ]}> <ProfileCard.Avatar profile={profile} moderationOpts={moderationOpts} |