Skip to content

Commit

Permalink
fix(relations): handle overflow in relations dialog
Browse files Browse the repository at this point in the history
When the form to add new relations runs longer the dialog height,
all its fields and the submit button must still be accessible.
This change handles the overflow separately for the x an y axis,
making the y-axis scrollable.
  • Loading branch information
gythaogg authored and b1rger committed Nov 8, 2024
1 parent e7b98eb commit c0f4832
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apis_core/relations/static/css/relations.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
#relationdialog {
border: 1px solid black;
border-radius: .3rem;
overflow: visible;
overflow-x: visible;
overflow-y: scroll;
padding: 0;
opacity: 1;
transform: scale(1);
Expand Down

0 comments on commit c0f4832

Please sign in to comment.