Skip to content

Commit

Permalink
Give the export modal a max width (#3017)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskerr authored Feb 26, 2024
1 parent 04c470a commit 905fe2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/zui/src/views/export-modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function ExportModal() {
useSubmitKey(ref)

return (
<PopoverModal ref={popover.ref} className="max-width:fit">
<PopoverModal ref={popover.ref} style={{maxWidth: "53ch"}}>
<div className="stack-3 box-1">
<div className="stack--2">
<H1>Export Results</H1>
Expand All @@ -40,7 +40,7 @@ export function ExportModal() {
className={classNames(forms.form, "stack-4")}
onSubmit={(e) => ctl.submit(e)}
>
<section className="stack-1 max-width:measure">
<section className="stack-1">
<div className="field">
<label>Export To</label>
<div className="cluster">
Expand Down

0 comments on commit 905fe2e

Please sign in to comment.