Skip to content

Commit b98b30b

Browse files
committed
Fix for wdio-devtools-tab scrollbar issue
1 parent b57158a commit b98b30b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/app/src/components/tabs.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export class DevtoolsTabs extends Element {
1515
:host {
1616
width: 100%;
1717
flex-grow: 1;
18+
min-height: 0;
1819
display: flex;
1920
flex-direction: column;
2021
color: var(--vscode-foreground);
@@ -130,7 +131,8 @@ export class DevtoolsTab extends Element {
130131
:host {
131132
display: none;
132133
flex-grow: 1;
133-
overflow-y: scroll;
134+
min-height: 0;
135+
overflow-y: auto;
134136
scrollbar-width: none;
135137
}
136138

0 commit comments

Comments
 (0)