File tree Expand file tree Collapse file tree
packages/ui/src/features/home/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,13 +23,11 @@ export function HomeBoardView({ snapshot }: HomeBoardViewProps) {
2323 ) ;
2424
2525 return (
26- < ScrollArea scrollbars = "horizontal" >
27- < div className = "flex h-full min-h-0 gap-3 p-4" >
28- { columns . map ( ( column ) => (
29- < BoardColumn key = { column . id } column = { column } />
30- ) ) }
31- </ div >
32- </ ScrollArea >
26+ < div className = "flex h-full min-h-0 gap-3 overflow-x-auto p-4" >
27+ { columns . map ( ( column ) => (
28+ < BoardColumn key = { column . id } column = { column } />
29+ ) ) }
30+ </ div >
3331 ) ;
3432}
3533
@@ -60,7 +58,7 @@ function BoardColumn({ column }: { column: HomeBoardColumn }) {
6058 className = "min-h-0 flex-1 rounded-xl border border-(--gray-3)"
6159 style = { { backgroundColor : c . wash } }
6260 >
63- < ScrollArea scrollbars = "vertical" >
61+ < ScrollArea scrollbars = "vertical" className = "h-full min-h-0" >
6462 < div className = "flex flex-col gap-2 p-2" >
6563 { count === 0 ? (
6664 < EmptyColumn sid = { column . id } />
You can’t perform that action at this time.
0 commit comments