diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-25 16:13:04 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | 955a864245b5da81b02363d6a2d69ffa1e6f27a3 (patch) | |
tree | 199cac85c704b5146d8126f4cc795e22550f8701 /src | |
parent | 0598d73617eda3da7946573850813593a6fc9bba (diff) | |
download | voidsky-955a864245b5da81b02363d6a2d69ffa1e6f27a3.tar.zst |
refactor: update MOBILE_CARD_WIDTH instead of using inline width
Diffstat (limited to 'src')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 28c4cbba6..b54c6622c 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -35,7 +35,7 @@ import {Text} from '#/components/Typography' import type * as bsky from '#/types/bsky' import {ProgressGuideList} from './ProgressGuide/List' -const MOBILE_CARD_WIDTH = 300 +const MOBILE_CARD_WIDTH = 165 function CardOuter({ children, @@ -285,7 +285,6 @@ export function ProfileGrid({ t.atoms.border_contrast_low, (hovered || pressed) && t.atoms.border_contrast_high, t.atoms.shadow_sm, - {width: 165}, ]}> <ProfileCard.Outer> <View style={[a.flex_col, a.align_center, a.gap_sm, a.pb_sm]}> |