diff --git a/packages/twenty-front/src/modules/ui/utilities/drag-and-drop/components/DragDropColumnSortableCell.tsx b/packages/twenty-front/src/modules/ui/utilities/drag-and-drop/components/DragDropColumnSortableCell.tsx index b29e559b90..cfc7e9b009 100644 --- a/packages/twenty-front/src/modules/ui/utilities/drag-and-drop/components/DragDropColumnSortableCell.tsx +++ b/packages/twenty-front/src/modules/ui/utilities/drag-and-drop/components/DragDropColumnSortableCell.tsx @@ -21,6 +21,7 @@ const SORTABLE_TRANSITION = { const StyledSortableRoot = styled.div<{ $fill?: boolean }>` display: ${({ $fill }) => ($fill ? 'flex' : 'block')}; + flex-shrink: ${({ $fill }) => ($fill ? 0 : 'initial')}; height: ${({ $fill }) => ($fill ? '100%' : 'auto')}; min-height: 0; min-width: ${({ $fill }) => ($fill ? '0' : 'auto')};