Skip to content

Commit

Permalink
fix(connection-form): don't force the modal larger, prevent it from g…
Browse files Browse the repository at this point in the history
…oing too big (#5824)

* don't force the modal larger, prevent it from going too big

* hardcoded max rather so you can't have an ultra skinny modal by expanding everything
  • Loading branch information
lerouxb committed May 21, 2024
1 parent b757490 commit bb1c3b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const formContainerStyles = css({
const formContentStyles = css({
display: 'flex',
columnGap: spacing[3],
height: `calc(100vh - 310px)`,
maxHeight: '720px',
overflow: 'auto',
scrollbarGutter: 'stable',
});
Expand Down

0 comments on commit bb1c3b2

Please sign in to comment.