diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-22 15:32:44 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-24 12:30:35 -0700 |
commit | 229f275246f12b563ea89faab1cbe3f27b98e404 (patch) | |
tree | 5a656802e445e356fcb2658f0392939133b33ef0 /src | |
parent | 66950a08cb0551fe600bf8c8d14f5e58632c11d5 (diff) | |
download | voidsky-229f275246f12b563ea89faab1cbe3f27b98e404.tar.zst |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/components/interstitials/TrendingVideos.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/interstitials/TrendingVideos.tsx b/src/components/interstitials/TrendingVideos.tsx index c64da3b5d..439803dfa 100644 --- a/src/components/interstitials/TrendingVideos.tsx +++ b/src/components/interstitials/TrendingVideos.tsx @@ -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, |