Skip to content

Commit 1d3d6a9

Browse files
committed
fix: heights
1 parent f526477 commit 1d3d6a9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/CRM/CogeBoard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export function CRMCogeBoard({
9090

9191
return (
9292
<DragDropContext onDragEnd={onDragEnd}>
93-
<div className="p-4 h-full overflow-auto">
93+
<div className="flex flex-col p-4 overflow-hidden" style={{ height: `calc(100% - 60px)` }}>
9494
{/* <h1 className="text-3xl font-bold mb-8">Cortex Sales Pipeline</h1> */}
9595
<div className="flex space-x-4 pb-4">
9696
{gcstatuses

src/components/CRM/KanbanBoard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export function CRMKanbanBoard({
8686

8787
return (
8888
<DragDropContext onDragEnd={onDragEnd}>
89-
<div className="h-screen flex flex-col p-4 overflow-hidden">
89+
<div className="flex flex-col p-4 overflow-hidden" style={{ height: `calc(100% - 60px)` }}>
9090
{/* <h1 className="text-3xl font-bold mb-8">Cortex Sales Pipeline</h1> */}
9191
<div className="flex space-x-4 flex-1 min-h-0 h-full">
9292
{statuses

0 commit comments

Comments
 (0)