Skip to content

Commit

Permalink
fix: don't overflow external inputs inside arrays/objects
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvxd committed May 30, 2024
1 parent 3708313 commit 42ef582
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@
border: none;
border-top: 1px solid var(--puck-color-grey-09);
margin: 0;
min-width: 0; /* Needed to ensure External input doesn't overflow, see https://stackoverflow.com/a/53784508 */
padding: 16px 15px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
.ObjectField-fieldset {
border: none;
margin: 0;
min-width: 0; /* Needed to ensure External input doesn't overflow, see https://stackoverflow.com/a/53784508 */
padding: 16px 15px;
}

0 comments on commit 42ef582

Please sign in to comment.