fix(ui): adjust TrendingVideos padding and gap sizes

Reduced top padding from large to small and updated horizontal padding
handling for the TrendingVideos component. Increased card gap and snap
interval from small to medium.
This commit is contained in:
Caidan Williams
2025-07-22 15:32:44 -07:00
parent 66950a08cb
commit 229f275246
@@ -68,7 +68,7 @@ export function TrendingVideos() {
return (
<View
style={[
a.pt_lg,
a.pt_sm,
a.pb_lg,
a.border_t,
a.overflow_hidden,
@@ -105,12 +105,12 @@ export function TrendingVideos() {
horizontal
showsHorizontalScrollIndicator={false}
decelerationRate="fast"
snapToInterval={CARD_WIDTH + a.gap_sm.gap}
snapToInterval={CARD_WIDTH + a.gap_md.gap}
style={[a.overflow_visible]}>
<View
style={[
a.flex_row,
a.gap_sm,
a.gap_md,
{
paddingLeft: gutters.paddingLeft,
paddingRight: gutters.paddingRight,