Skip to content

Commit

Permalink
move field list behind the overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
tolomea committed Mar 13, 2024
1 parent 273480f commit c22b67f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/FieldList.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ function Field(props) {
const expanded = modelField.model && (toggled || fieldFilter);
const stickyOffsetStyle = {
top: -2 + nesting * 30,
zIndex: 1000 - nesting,
zIndex: 99 - nesting,
};
const zStyle = {
zIndex: 1000 - nesting - 1,
zIndex: 99 - nesting - 1,
};

return (
Expand Down

0 comments on commit c22b67f

Please sign in to comment.