fix(ui): overflow for TrendingVideos scroll container

Added overflow_hidden to the main container and set overflow_visible on
the FlatList to ensure proper display of horizontally scrolling cards.
This resolves clipping issues and improves the visual layout of trending
videos.
This commit is contained in:
Caidan Williams
2025-07-22 13:34:06 -07:00
parent ce02e4aa3d
commit 12e67f53dd
@@ -71,6 +71,7 @@ export function TrendingVideos() {
a.pt_lg,
a.pb_lg,
a.border_t,
a.overflow_hidden,
t.atoms.border_contrast_low,
t.atoms.bg_contrast_25,
]}>
@@ -104,7 +105,8 @@ export function TrendingVideos() {
horizontal
showsHorizontalScrollIndicator={false}
decelerationRate="fast"
snapToInterval={CARD_WIDTH + a.gap_sm.gap}>
snapToInterval={CARD_WIDTH + a.gap_sm.gap}
style={[a.overflow_visible]}>
<View
style={[
a.flex_row,