Open
Description
Feature Description
Currently the height of the board columns are fixed by following CSS class:
.board-column {
...
height: calc(100vh - 450px);
...
Depending on the resolution this can result in more free space than actually used for showing what the user wants to see.
Please consider adding a button which allows dynamically maximizing the columns to full height or simply changing the CSS height to calc(100vh - 45px)
. Then the user can scroll the whole column into view without seeing title and footer.
In the meanwhile this JS command can be used as workaround:
$(".board-column").css({"height":"calc(100vh - 45px)"});
Screenshots
No response