Skip to content

Commit

Permalink
Overflow with scrollbar in search
Browse files Browse the repository at this point in the history
This allows users to scroll the entire object if it overflows.

project-obj-content needs to be unset or it's styling overrides this. (which is undesirable for search specifically)
  • Loading branch information
Arzte committed Jul 26, 2024
1 parent f427bcc commit 5bf6d99
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions components/viewer/modal/SearchModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,12 @@ const preview = (obj: ProjectObj, row: ProjectRow) => {
align-items: stretch;
justify-content: stretch;
overflow: auto;
.project-obj {
overflow-y: scroll;
}
.project-obj-content {
overflow: unset;
}
}
.result-group {
Expand Down

0 comments on commit 5bf6d99

Please sign in to comment.