From eaa2f83eb1e01a90495c3da375983bbc3d3f3544 Mon Sep 17 00:00:00 2001 From: martmull Date: Fri, 14 Jun 2024 13:11:15 +0200 Subject: [PATCH] Fix overflow on notes (#5853) ##before ![image](https://github.com/twentyhq/twenty/assets/29927851/c1784340-0741-4701-b11f-d2cf50fab9fb) ##after ![image](https://github.com/twentyhq/twenty/assets/29927851/c095eaf1-15c4-4e68-8cff-c175f99856d0) --- .../components/RecordInlineCellContainer.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCellContainer.tsx b/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCellContainer.tsx index 926d934c8f8e..1514ec9f313f 100644 --- a/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCellContainer.tsx +++ b/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCellContainer.tsx @@ -34,7 +34,8 @@ const StyledLabelAndIconContainer = styled.div` const StyledValueContainer = styled.div` display: flex; - min-width: 100%; + flex-grow: 1; + min-width: 0; `; const StyledLabelContainer = styled.div<{ width?: number }>`