Fix double-scrollbar bug

This commit is contained in:
Laurent Nguyen 2020-10-08 21:04:02 +02:00 committed by GitHub
parent b69174788d
commit 8c1ca35420
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -2082,7 +2082,8 @@ a:link {
.resourceTreeAndTabs { .resourceTreeAndTabs {
display: flex; display: flex;
flex: 1 1 auto; flex: 1 1 auto;
overflow: auto; overflow-x: auto;
overflow-y: hidden;
height: 100%; height: 100%;
} }