diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-28 16:58:03 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | da47cd0d1b8aac5a19c753a08fdcdf2006cd7eec (patch) | |
tree | c639b4c7d8e23c1ad3cd7f0e68b96ea3e6c4a079 | |
parent | ab5be5cb3fe92ca2fb0b5013fbe72136054ddb91 (diff) | |
download | voidsky-da47cd0d1b8aac5a19c753a08fdcdf2006cd7eec.tar.zst |
fix(ui): placeholder web size and flex grow
-rw-r--r-- | src/components/FeedInterstitials.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 48965ffb7..6cb10a523 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -256,7 +256,11 @@ export function ProfileGrid({ key={i} style={[ gtMobile && - web([a.flex_0, {width: `calc(50% - ${a.gap_md.gap / 2}px)`}]), + web([ + a.flex_0, + a.flex_grow, + {width: `calc(30% - ${a.gap_md.gap / 2}px)`}, + ]), ]}> <SuggestedFollowPlaceholder /> </View> |