fix overflowing review timeline on mobile (#10231)

This commit is contained in:
Josh Hawkins
2024-03-04 07:35:10 -06:00
committed by GitHub
parent 85ce672b53
commit 0f168dfc1a
2 changed files with 3 additions and 3 deletions

View File

@@ -81,7 +81,7 @@ export default function RecordingView({
}, [scrubbing]);
return (
<div ref={contentRef} className="relative w-full h-full">
<div ref={contentRef} className="flex flex-col relative w-full h-full">
<Button
className="md:absolute md:top-0 md:left-0 rounded-lg"
onClick={() => navigate(-1)}
@@ -110,7 +110,7 @@ export default function RecordingView({
/>
</div>
<div className="md:absolute md:w-[100px] md:inset-y-0 md:right-0">
<div className="flex-grow overflow-hidden md:absolute md:w-[100px] md:inset-y-0 md:right-0">
<EventReviewTimeline
segmentDuration={30}
timestampSpread={15}