about summary refs log tree commit diff
path: root/src/components/VideoPostCard.tsx
diff options
context:
space:
mode:
authorCaidan Williams <caidan@internet.dev>2025-07-22 13:54:22 -0700
committerCaidan Williams <caidan@internet.dev>2025-07-24 12:30:35 -0700
commitb89645a172b56c51e6b886072bf53aecd6834b14 (patch)
tree767d5715fe0bf69363388d667756055cd86346f9 /src/components/VideoPostCard.tsx
parent12e67f53dd6ca0d807eab84813543b663e4b260d (diff)
downloadvoidsky-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.tsx3
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,