We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a62bce commit fedf056Copy full SHA for fedf056
2 files changed
src/widgets/kanban-board/ui/board/Board.tsx
@@ -63,7 +63,9 @@ export const Board = () => {
63
</h2>
64
<Filters />
65
</div>
66
- <ScrollArea.Viewport className='w-full flex-1 pb-4'>
+ <ScrollArea.Viewport
67
+ className='max-desktop:snap-x max-desktop:snap-mandatory w-full flex-1
68
+ pb-4'>
69
<DragAndDropProvider initialColumns={board.columns}>
70
<ColumnList backgroundURL={backgroundURL} />
71
<KanbanDragOverlay />
src/widgets/kanban-board/ui/column/ColumnListItem.tsx
@@ -25,7 +25,7 @@ export const ColumnListItem = ({
25
return (
26
<li
27
className={cn(
28
- 'w-[334px] touch-manipulation list-none rounded-lg',
+ 'w-[334px] touch-manipulation snap-center list-none rounded-lg',
29
isOverlay && 'styled-outline',
30
isDragging && 'opacity-60 select-none'
31
)}
0 commit comments