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 49150429b..e3db9d710 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 @@ -39,6 +39,7 @@ const StyledLabelAndIconContainer = styled.div` const StyledValueContainer = styled.div` display: flex; + min-width: 0; `; const StyledLabelContainer = styled.div<{ width?: number }>` diff --git a/packages/twenty-front/src/modules/ui/navigation/link/components/RoundedLink.tsx b/packages/twenty-front/src/modules/ui/navigation/link/components/RoundedLink.tsx index 1ca731459..32a2258c7 100644 --- a/packages/twenty-front/src/modules/ui/navigation/link/components/RoundedLink.tsx +++ b/packages/twenty-front/src/modules/ui/navigation/link/components/RoundedLink.tsx @@ -21,12 +21,17 @@ const StyledClickable = styled.div` } `; +const StyledChip = styled(Chip)` + box-sizing: border-box; + padding: ${({ theme }) => theme.spacing(2)}; +`; + export const RoundedLink = ({ children, href, onClick }: RoundedLinkProps) => (