fix(views/board): unable to scroll vertically

This commit is contained in:
Elian Doran 2025-07-25 19:00:12 +03:00
parent ca1403ffea
commit adf14bec31
No known key found for this signature in database

View file

@ -24,6 +24,7 @@ const TPL = /*html*/`
display: flex; display: flex;
gap: 1em; gap: 1em;
padding: 1em; padding: 1em;
padding-bottom: 0;
align-items: flex-start; align-items: flex-start;
} }
@ -36,6 +37,7 @@ const TPL = /*html*/`
background-color: var(--accented-background-color); background-color: var(--accented-background-color);
transition: border-color 0.2s ease; transition: border-color 0.2s ease;
overflow-y: auto; overflow-y: auto;
max-height: 100%;
} }
.board-view-container .board-column.drag-over { .board-view-container .board-column.drag-over {