* Hide motion playback controls during scrubbing

* Fix portrait recordings on mobile

* Don't apply to desktop
This commit is contained in:
Nicolas Mowen
2024-04-05 08:38:05 -05:00
committed by GitHub
parent fb7cfe5471
commit 2318e79502
2 changed files with 31 additions and 27 deletions
+3 -1
View File
@@ -92,7 +92,7 @@ export default function HlsVideoPlayer({
return (
<TransformWrapper minScale={1.0}>
<div
className={`relative w-full ${className ?? ""} ${visible ? "visible" : "hidden"}`}
className={`relative ${className ?? ""} ${visible ? "visible" : "hidden"}`}
onMouseOver={
isDesktop
? () => {
@@ -112,9 +112,11 @@ export default function HlsVideoPlayer({
<TransformComponent
wrapperStyle={{
width: "100%",
height: "100%",
}}
contentStyle={{
width: "100%",
height: isMobile ? "100%" : undefined,
}}
>
<video