From 3eef4a893896944003365d01facf9741f5cfa410 Mon Sep 17 00:00:00 2001 From: Karthik S Kashyap Date: Mon, 8 Apr 2024 01:14:18 +0530 Subject: [PATCH] #4852 - Remove margin left on Record Board (Kanban) (#4862) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/twentyhq/twenty/issues/4852 Hey, I'm very new to React! Also, this is my first try at contributing to open source. Hoping to learn React and Nestjs, I look forward to contributing more in the future! Looking forward to your feedback and guidance! **Edit:** ![Group 9](https://github.com/twentyhq/twenty/assets/47709410/210a0b9e-0a26-4e3e-8e1b-a88837c90f10) --------- Co-authored-by: Félix Malfait --- .../object-record/record-board/components/RecordBoard.tsx | 2 -- 1 file changed, 2 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 c877865d9..b8840686e 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; - margin-left: ${({ theme }) => theme.spacing(2)}; - margin-right: ${({ theme }) => theme.spacing(2)}; `; const StyledWrapper = styled.div`