more modest default width

This commit is contained in:
Nick Mowen 2023-12-30 12:28:06 -07:00
parent 5e2225b8ac
commit 2926a88be4

View File

@ -242,7 +242,7 @@ function TimelineViewer({ playback, isMobile, onClose }: TimelineViewerProps) {
return (
<Dialog open={playback != undefined} onOpenChange={(_) => onClose()}>
<DialogContent className="w-3/5 max-w-full">
<DialogContent className="w-screen 2xl:w-4/5 max-w-full">
{playback && (
<HistoryTimelineView playback={playback} isMobile={isMobile} />
)}