Merge pull request #5280 from tsiegleauq/workflow-manager-scrolling

Enhance workflow matrix for small screens
This commit is contained in:
Emanuel Schütze 2020-03-25 15:26:18 +01:00 committed by GitHub
commit 6f7c6036c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -40,5 +40,9 @@ table {
}
.scrollable-matrix {
overflow: auto;
overflow-y: scroll;
overflow-x: auto;
// the most simple solution that requires every other size to be exact.
// TODO: if the whole page is absolute again, this will not be required anymore.
height: calc(100vh - 128px);
}