diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-22 13:54:22 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-24 12:30:35 -0700 |
commit | b89645a172b56c51e6b886072bf53aecd6834b14 (patch) | |
tree | 767d5715fe0bf69363388d667756055cd86346f9 /src/components/VideoPostCard.tsx | |
parent | 12e67f53dd6ca0d807eab84813543b663e4b260d (diff) | |
download | voidsky-b89645a172b56c51e6b886072bf53aecd6834b14.tar.zst |
feat(ui): add shadow to video post trending cards
Added a small shadow (shadow_sm) to the CompactVideoPostCard and the "View more" card in TrendingVideos for improved visual depth and consistency. This enhances the card appearance and aligns with the design system.
Diffstat (limited to 'src/components/VideoPostCard.tsx')
-rw-r--r-- | src/components/VideoPostCard.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/VideoPostCard.tsx b/src/components/VideoPostCard.tsx index 99ac53eaf..4cb4c4a75 100644 --- a/src/components/VideoPostCard.tsx +++ b/src/components/VideoPostCard.tsx @@ -411,6 +411,7 @@ export function CompactVideoPostCard({ onPressOut={onPressOut} style={[ a.flex_col, + t.atoms.shadow_sm, { alignItems: undefined, justifyContent: undefined, @@ -534,7 +535,7 @@ export function CompactVideoPostCardPlaceholder() { const black = getBlackColor(t) return ( - <View style={[a.flex_1]}> + <View style={[a.flex_1, t.atoms.shadow_sm]}> <View style={[ a.rounded_lg, |