Skip to content

Commit a9265a2

Browse files
committed
fix(#31666): Fix scroll brief display while dragging cards
As demonstrated in #31726 (comment), an horizontal scrollbar can appears while dragging a card to a column from the right side, as the ghost card is animated to fit in. Force hidding the scrollbars using overflow:clip.
1 parent 20917c7 commit a9265a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/css/features/projects.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
padding: 0 !important;
5151
flex-wrap: nowrap !important;
5252
flex-direction: column;
53-
overflow-x: auto;
53+
overflow-x: clip;
5454
gap: .25rem;
5555
}
5656

0 commit comments

Comments
 (0)