Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-bug-report-modal-overflow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

Constrain bug report modal to viewport height to prevent overflow.
4 changes: 2 additions & 2 deletions src/app/features/bug-report/BugReportModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ function BugReportModal() {
escapeDeactivates: stopPropagation,
}}
>
<Modal size="500" flexHeight variant="Surface">
<Box direction="Column">
<Modal size="500" flexHeight variant="Surface" style={{ maxHeight: '90vh' }}>
<Box direction="Column" style={{ maxHeight: '90vh', overflow: 'hidden' }}>
<Header
size="500"
style={{ padding: config.space.S200, paddingLeft: config.space.S400 }}
Expand Down
Loading