diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:05:13 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | 7b4ec21e3e60cb25197fb277f3ba54fa627e4e1e (patch) | |
tree | bc695484fe1313ef7a440c620fb435c9e1aa97f4 | |
parent | e5457c946a5bf56fafde790ced9014e1cb73cd34 (diff) | |
download | voidsky-7b4ec21e3e60cb25197fb277f3ba54fa627e4e1e.tar.zst |
refactor(ui): adjust border styles in ProfileGrid card
-rw-r--r-- | src/components/FeedInterstitials.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index e4419838d..9bdfcbc5e 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -308,10 +308,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, + (hovered || pressed) && t.atoms.border_contrast_high, ]}> <ProfileCard.Outer> <View |