Update Kanban layout a bit

This commit is contained in:
sosokker 2023-11-17 03:36:45 +07:00
parent a0ffcbcd19
commit 39f3deb4bf

View File

@ -119,7 +119,7 @@ function KanbanBoard() {
overflow-y-hidden
">
<DndContext sensors={sensors} onDragStart={onDragStart} onDragEnd={onDragEnd} onDragOver={onDragOver}>
<div className="m-auto flex gap-4">
<div className="ml-2 flex gap-4">
<div className="flex gap-4">
<SortableContext items={columnsId}>
{columns.map(col => (
@ -142,8 +142,8 @@ function KanbanBoard() {
}}
className="
h-[60px]
w-[350px]
min-w-[350px]
w-[268px]
max-w-[268px]
cursor-pointer
rounded-xl
bg-[#f1f2f4]
@ -163,7 +163,7 @@ function KanbanBoard() {
</div>
{createPortal(
<DragOverlay>
<DragOverlay className="bg-white" dropAnimation={null} zIndex={20}>
{activeColumn && (
<ColumnContainerCard
column={activeColumn}