From 697d466422c19337ea5c4752b6ecb9f79bd4ce6f Mon Sep 17 00:00:00 2001 From: Harshit Singh <73997189+harshit078@users.noreply.github.com> Date: Sat, 7 Sep 2024 03:25:47 +0530 Subject: [PATCH] fix: Minor bugs in notes pages (#6914) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Descripion This PR fixed the issue #6913 ## Currently behavior Screenshot 2024-09-06 at 1 12 33 AM Screenshot 2024-09-06 at 1 13 31 AM ## Expected behaviour Screenshot 2024-09-06 at 1 15 07 AM Screenshot 2024-09-06 at 1 15 20 AM Co-authored-by: Lucas Bordeau --- .../components/RecordTableCellDisplayContainer.tsx | 1 + .../modules/ui/navigation/action-bar/components/ActionBar.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableCellDisplayContainer.tsx b/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableCellDisplayContainer.tsx index 20941b7c6..84a332a62 100644 --- a/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableCellDisplayContainer.tsx +++ b/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableCellDisplayContainer.tsx @@ -18,6 +18,7 @@ const StyledInnerContainer = styled.div` height: 100%; overflow: hidden; width: 100%; + flex-wrap: wrap; `; export type EditableCellDisplayContainerProps = { diff --git a/packages/twenty-front/src/modules/ui/navigation/action-bar/components/ActionBar.tsx b/packages/twenty-front/src/modules/ui/navigation/action-bar/components/ActionBar.tsx index 1cb6a4af4..c020f4270 100644 --- a/packages/twenty-front/src/modules/ui/navigation/action-bar/components/ActionBar.tsx +++ b/packages/twenty-front/src/modules/ui/navigation/action-bar/components/ActionBar.tsx @@ -23,7 +23,7 @@ const StyledContainerActionBar = styled.div` box-shadow: ${({ theme }) => theme.boxShadow.strong}; display: flex; height: 48px; - + width: max-content; left: 50%; padding-left: ${({ theme }) => theme.spacing(2)}; padding-right: ${({ theme }) => theme.spacing(2)};