Skip to content

Commit 905fe2e

Browse files
authored
Give the export modal a max width (#3017)
1 parent 04c470a commit 905fe2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/zui/src/views/export-modal/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function ExportModal() {
2929
useSubmitKey(ref)
3030

3131
return (
32-
<PopoverModal ref={popover.ref} className="max-width:fit">
32+
<PopoverModal ref={popover.ref} style={{maxWidth: "53ch"}}>
3333
<div className="stack-3 box-1">
3434
<div className="stack--2">
3535
<H1>Export Results</H1>
@@ -40,7 +40,7 @@ export function ExportModal() {
4040
className={classNames(forms.form, "stack-4")}
4141
onSubmit={(e) => ctl.submit(e)}
4242
>
43-
<section className="stack-1 max-width:measure">
43+
<section className="stack-1">
4444
<div className="field">
4545
<label>Export To</label>
4646
<div className="cluster">

0 commit comments

Comments
 (0)