diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-02-03 11:38:09 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-03 11:38:09 -0800 |
commit | b27a11cc1052b3d0c6c9a828b35100a78740cb3f (patch) | |
tree | 202cf6cf068c6bb5bec5c65fc79a7aadf803fd71 | |
parent | 1ec0d117271e588dc13679b9ba685c1cf9bc67ad (diff) | |
download | voidsky-b27a11cc1052b3d0c6c9a828b35100a78740cb3f.tar.zst |
reduce padding on video overlay (#7617)
-rw-r--r-- | src/screens/VideoFeed/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/VideoFeed/index.tsx b/src/screens/VideoFeed/index.tsx index 743ca5b40..88a83b45c 100644 --- a/src/screens/VideoFeed/index.tsx +++ b/src/screens/VideoFeed/index.tsx @@ -756,7 +756,7 @@ function Overlay({ 'rgba(0,0,0,0.95)', ]} style={[a.w_full, a.pt_md]}> - <Animated.View style={[a.px_xl, animatedStyle]}> + <Animated.View style={[a.px_md, animatedStyle]}> <View style={[a.w_full, a.flex_row, a.align_center, a.gap_md]}> <Link label={_( |