From 61cdc0e6dab829f93c85de6c13dd2f2a285e862f Mon Sep 17 00:00:00 2001 From: Harsh Singh Date: Fri, 8 Nov 2024 19:25:45 +0530 Subject: [PATCH] fix: kanban column margin should extend to bottom (#8394) Fixes: #7868 [Screencast from 2024-11-08 13-33-47.webm](https://github.com/user-attachments/assets/1de620d8-8f05-43f8-bde9-a2c9cbea4b9f) --------- Co-authored-by: ehconitin --- .../object-record/record-board/components/RecordBoard.tsx | 2 -- .../record-board-column/components/RecordBoardColumn.tsx | 6 +----- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/twenty-front/src/modules/object-record/record-board/components/RecordBoard.tsx b/packages/twenty-front/src/modules/object-record/record-board/components/RecordBoard.tsx index 1ed7c4133..34f70dffc 100644 --- a/packages/twenty-front/src/modules/object-record/record-board/components/RecordBoard.tsx +++ b/packages/twenty-front/src/modules/object-record/record-board/components/RecordBoard.tsx @@ -26,8 +26,6 @@ const StyledContainer = styled.div` display: flex; flex: 1; flex-direction: row; - min-height: calc(100% - 1px); - height: 100%; `; const StyledColumnContainer = styled.div` diff --git a/packages/twenty-front/src/modules/object-record/record-board/record-board-column/components/RecordBoardColumn.tsx b/packages/twenty-front/src/modules/object-record/record-board/record-board-column/components/RecordBoardColumn.tsx index 489798e16..26072d4a7 100644 --- a/packages/twenty-front/src/modules/object-record/record-board/record-board-column/components/RecordBoardColumn.tsx +++ b/packages/twenty-front/src/modules/object-record/record-board/record-board-column/components/RecordBoardColumn.tsx @@ -12,14 +12,10 @@ const StyledColumn = styled.div` flex-direction: column; max-width: 200px; min-width: 200px; - padding: ${({ theme }) => theme.spacing(2)}; - padding-top: 0px; - position: relative; - - min-height: 100%; + height: 100%; `; type RecordBoardColumnProps = {