diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/VideoPostCard.tsx | 3 | ||||
-rw-r--r-- | src/components/interstitials/TrendingVideos.tsx | 1 |
2 files changed, 3 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, diff --git a/src/components/interstitials/TrendingVideos.tsx b/src/components/interstitials/TrendingVideos.tsx index b76066330..8eaa13be0 100644 --- a/src/components/interstitials/TrendingVideos.tsx +++ b/src/components/interstitials/TrendingVideos.tsx @@ -197,6 +197,7 @@ function VideoCards({ a.flex_1, a.rounded_lg, t.atoms.bg, + t.atoms.shadow_sm, ]}> {({pressed}) => ( <View |