Skip to content

Commit

Permalink
fix(pat contentbrowser): scroll columns horizontally when deeply nest…
Browse files Browse the repository at this point in the history
…ed folders.
  • Loading branch information
petschki committed Jan 25, 2025
1 parent f9eaddd commit 0e77a7d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pat/contentbrowser/src/ContentBrowser.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,8 @@
display: flex;
flex-wrap: nowrap;
width: 100%;
overflow: hidden;
overflow-y: hidden;
overflow-x: auto;
flex-grow: 3;
border-left: var(--bs-border-style) var(--bs-border-color) var(--bs-border-width);
user-select: none;
Expand All @@ -654,6 +655,8 @@
var(--bs-border-color);
display: flex;
flex-direction: column;
flex-grow: 0;
flex-shrink: 0;
}
.levelToolbar {
Expand Down

0 comments on commit 0e77a7d

Please sign in to comment.