diff --git a/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableTd.tsx b/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableTd.tsx index 5cddb1d8d..1c95f0287 100644 --- a/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableTd.tsx +++ b/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableTd.tsx @@ -24,9 +24,8 @@ const StyledTd = styled.td<{ ${({ borderColor, hasBottomBorder }) => hasBottomBorder ? borderColor : 'transparent'}; color: ${({ fontColor }) => fontColor}; - border-right: 1px solid - ${({ borderColor, hasRightBorder }) => - hasRightBorder ? borderColor : 'transparent'}; + border-right: ${({ borderColor, hasRightBorder }) => + hasRightBorder ? `1px solid ${borderColor}` : 'none'}; padding: 0; transition: 0.3s ease; diff --git a/packages/twenty-front/src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSection.tsx b/packages/twenty-front/src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSection.tsx index 1c3bc7c76..7503b4a50 100644 --- a/packages/twenty-front/src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSection.tsx +++ b/packages/twenty-front/src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSection.tsx @@ -32,6 +32,11 @@ const StyledChevronContainer = styled(RecordTableTd)` vertical-align: middle; `; +const StyledAnimatedLightIconButton = styled(AnimatedLightIconButton)` + display: block; + margin: auto; +`; + const StyledTotalRow = styled.span` color: ${({ theme }) => theme.font.color.tertiary}; margin-left: ${({ theme }) => theme.spacing(2)}; @@ -88,7 +93,7 @@ export const RecordTableRecordGroupSection = () => { -