fix(#31666): Fix v-scroll brief display at the board level

A vertical scrollbar can appears while dragging a card-out, when the column height is higher than the heght-viewport and the board is being reduced (quicker than its contents). Force hidding the scrollbars using overflow:clip.
This commit is contained in:
Simon 2024-08-06 09:37:55 +02:00
parent a9265a2c36
commit 31dcdf874f

View File

@ -3,6 +3,7 @@
flex-direction: row;
flex-wrap: nowrap;
overflow-x: auto;
overflow-y: clip;
align-items: stretch;
margin: 0 0.5em;
}