From da47cd0d1b8aac5a19c753a08fdcdf2006cd7eec Mon Sep 17 00:00:00 2001 From: Caidan Williams Date: Mon, 28 Jul 2025 16:58:03 -0700 Subject: fix(ui): placeholder web size and flex grow --- src/components/FeedInterstitials.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') 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)`}, + ]), ]}> -- cgit 1.4.1