mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-09-10 17:51:45 +02:00
Constrain width of export preview dialog
Matches the other export preview dialog in Review
This commit is contained in:
parent
a8b7e5dd24
commit
ba0599abd9
@ -149,7 +149,10 @@ function Exports() {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<DialogContent
|
<DialogContent
|
||||||
className={cn("max-w-[80%]", isMobile && "landscape:max-w-[60%]")}
|
className={cn(
|
||||||
|
"max-h-[95dvh] sm:max-w-xl md:max-w-4xl lg:max-w-4xl xl:max-w-7xl",
|
||||||
|
isMobile && "landscape:max-w-[60%]",
|
||||||
|
)}
|
||||||
>
|
>
|
||||||
<DialogTitle className="smart-capitalize">
|
<DialogTitle className="smart-capitalize">
|
||||||
{selected?.name?.replaceAll("_", " ")}
|
{selected?.name?.replaceAll("_", " ")}
|
||||||
|
Loading…
Reference in New Issue
Block a user