Better dialog sizes

This commit is contained in:
Nick Mowen 2023-12-31 05:57:00 -07:00
parent 48945fef91
commit cd4882d1e0

View File

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