diff options
author | jim <310223+jimmylee@users.noreply.github.com> | 2025-07-31 14:28:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-31 14:28:00 -0700 |
commit | 9eba5671354dd5361adb19dd0b56a1156d0a51d7 (patch) | |
tree | 2956049b0bdb70a502551cf0de347654f4e8c2ce /src/components/FeedInterstitials.tsx | |
parent | f4724e378d9227820db404b2172ba1c72bdd6cae (diff) | |
parent | 79f365b21c2551b0d4d095e6f352e1a699d81722 (diff) | |
download | voidsky-9eba5671354dd5361adb19dd0b56a1156d0a51d7.tar.zst |
Merge pull request #8763 from internet-development/caidan/app-1364-fix-suggested-follows-small-web-view
Diffstat (limited to 'src/components/FeedInterstitials.tsx')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 2a3a00ba7..18da12b22 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -378,8 +378,8 @@ export function ProfileGrid({ style={[a.border_t, t.atoms.border_contrast_low, t.atoms.bg_contrast_25]}> <View style={[ - a.p_lg, - a.py_md, + a.px_lg, + a.pt_md, a.flex_row, a.align_center, a.justify_between, @@ -399,7 +399,7 @@ export function ProfileGrid({ </View> {gtMobile ? ( - <View style={[a.px_lg, a.pb_lg]}> + <View style={[a.p_lg, a.pt_md]}> <View style={[a.flex_1, a.flex_row, a.flex_wrap, a.gap_md]}> {content} </View> @@ -411,9 +411,8 @@ export function ProfileGrid({ horizontal showsHorizontalScrollIndicator={false} snapToInterval={MOBILE_CARD_WIDTH + a.gap_md.gap} - decelerationRate="fast" - style={[a.overflow_visible]}> - <View style={[a.px_lg, a.pb_lg, a.flex_row, a.gap_md]}> + decelerationRate="fast"> + <View style={[a.p_lg, a.pt_md, a.flex_row, a.gap_md]}> {content} <SeeMoreSuggestedProfilesCard /> @@ -434,6 +433,7 @@ function SeeMoreSuggestedProfilesCard() { return ( <Button label={_(msg`Browse more accounts on the Explore page`)} + style={[a.flex_col]} onPress={() => { navigation.navigate('SearchTab') }}> |