diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-09-11 16:20:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-11 16:20:08 +0100 |
commit | db38438549aa878a89ba1fb2198e6454f50367c4 (patch) | |
tree | 9032204074bbd9d10f89dffb3cc69ae89c2f50b6 /src | |
parent | fc25992070633af9c242712fe6234a518200ef9b (diff) | |
download | voidsky-db38438549aa878a89ba1fb2198e6454f50367c4.tar.zst |
increase target area of scrubber (#5265)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx index 590dc0c27..3fd322692 100644 --- a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx +++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx @@ -586,7 +586,7 @@ function Scrubber({ return ( <View testID="scrubber" - style={[{height: 10, width: '100%'}, a.flex_shrink_0, a.px_xs]} + style={[{height: 18, width: '100%'}, a.flex_shrink_0, a.px_xs, a.py_xs]} onPointerEnter={onStartHover} onPointerLeave={onEndHover}> <div |