Skip to content

Commit

Permalink
revert: fix: Vertical scrollbar in data browser is outside visible ar…
Browse files Browse the repository at this point in the history
…ea when scrolling horizontally (#2457) (#2477)

This reverts commit 5acac3f.
  • Loading branch information
mtrezza committed Jun 24, 2023
1 parent d410339 commit 2f1d84e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@import 'stylesheets/globals.scss';

.bar {
position: sticky;
position: absolute;
top: 0;
left: 0;
height: 30px;
Expand Down
7 changes: 4 additions & 3 deletions src/dashboard/Data/Browser/Browser.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
right: 0;
bottom: 0;
overflow: auto;
width: calc(100% - 300px);
padding-top: 30px;
}

body:global(.expanded) {
.browser {
left: $sidebarCollapsedWidth;
width: calc(100% - $sidebarCollapsedWidth);
}
}

Expand Down Expand Up @@ -83,7 +82,9 @@ body:global(.expanded) {
top: 30px;
bottom: 0;
left: 0;
width: 100%;
min-width: 100%;
overflow-y: auto;
overflow-x: hidden;
}

.table .empty {
Expand Down

0 comments on commit 2f1d84e

Please sign in to comment.