Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devboard/client/src/components/Board/Column.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Column = ({ columnId, tasks, onSelectTask, onAddTask }) => {
const config = COLUMN_CONFIG[columnId];

return (
<div className="flex flex-col w-56 flex-shrink-0">
<div className="flex flex-col w-full md:w-56 flex-shrink-0">
{/* Header */}
<div className="flex items-center justify-between mb-3 px-1">
<div className="flex items-center gap-2">
Expand Down
2 changes: 1 addition & 1 deletion devboard/client/src/components/Board/KanbanBoard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const KanbanBoard = ({ onSelectTask }) => {
return (
<>
<DragDropContext onDragEnd={onDragEnd}>
<div className="flex gap-4 p-4 overflow-x-auto h-full">
<div className="flex flex-col md:flex-row gap-4 p-4 overflow-x-hidden md:overflow-x-auto overflow-y-auto h-full">
{COLUMNS.map((col) => (
<Column
key={col}
Expand Down
13 changes: 13 additions & 0 deletions devboard/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions devboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@
},
"devDependencies": {
"concurrently": "^8.2.0"
},
"dependencies": {
"canvas-confetti": "^1.9.4"
}
}