From 92c997b5f036c50805e0117274c8a159b41e3a92 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Sat, 18 Jan 2025 18:35:19 -0600 Subject: [PATCH] Fix scrubber height --- src/screens/VideoFeed/components/Scrubber.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/screens/VideoFeed/components/Scrubber.tsx b/src/screens/VideoFeed/components/Scrubber.tsx index c67172745b..dbdedfd96f 100644 --- a/src/screens/VideoFeed/components/Scrubber.tsx +++ b/src/screens/VideoFeed/components/Scrubber.tsx @@ -184,12 +184,13 @@ export function Scrubber({ a.justify_end, a.py_lg, { - paddingBottom: insets.bottom + a.py_md.paddingBottom, + paddingBottom: insets.bottom + tokens.space.md, height: // bottom padding insets.bottom + // actual height - tokens.space.xl, + tokens.space.xl + + tokens.space.md, }, a.z_10, ]}> @@ -226,7 +227,7 @@ export function ScrubberPlaceholder() { a.w_full, { // same as Scrubber - height: bottom + tokens.space.xl, + height: bottom + tokens.space.xl + tokens.space.md, }, ]} />