diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-24 18:39:02 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | c6e7816fa73d57468bad5cd0dc4c2ed63fc972e5 (patch) | |
tree | 2e45e97b24061449539ad6e1af305458456a3d53 | |
parent | ff4eecc2e4c485c5fddf763008bf46b0148eac0a (diff) | |
download | voidsky-c6e7816fa73d57468bad5cd0dc4c2ed63fc972e5.tar.zst |
feat(ui): update padding, border radius, and border on suggested profile card
-rw-r--r-- | src/components/FeedInterstitials.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 7af2384b0..44f390da5 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -47,8 +47,8 @@ function CardOuter({ <View style={[ a.w_full, - a.p_lg, - a.rounded_md, + a.p_md, + a.rounded_lg, a.border, t.atoms.bg, t.atoms.border_contrast_low, @@ -281,6 +281,8 @@ export function ProfileGrid({ <CardOuter style={[ a.flex_1, + a.border, + t.atoms.border_contrast_low, (hovered || pressed) && t.atoms.border_contrast_high, t.atoms.shadow_sm, ]}> |