Enhance workflow matrix for small screens

makes scrolling horizontally in the workflow manager easier.
The offline banner and the voting banner will lead to unwanted results.
This commit is contained in:
Sean 2020-03-25 13:01:25 +01:00
parent 91be76a263
commit 73fc936306
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);
}