diff --git a/packages/twenty-front/src/modules/object-record/record-table/components/CheckboxCell.tsx b/packages/twenty-front/src/modules/object-record/record-table/components/CheckboxCell.tsx index 74af8f6ab5a..2aff77e1b16 100644 --- a/packages/twenty-front/src/modules/object-record/record-table/components/CheckboxCell.tsx +++ b/packages/twenty-front/src/modules/object-record/record-table/components/CheckboxCell.tsx @@ -16,6 +16,7 @@ const StyledContainer = styled.div` height: 32px; justify-content: center; + background-color: ${({ theme }) => theme.background.primary}; `; export const CheckboxCell = () => { diff --git a/packages/twenty-front/src/modules/object-record/record-table/components/SelectAllCheckbox.tsx b/packages/twenty-front/src/modules/object-record/record-table/components/SelectAllCheckbox.tsx index 7d65db3912f..9f9a46a70ff 100644 --- a/packages/twenty-front/src/modules/object-record/record-table/components/SelectAllCheckbox.tsx +++ b/packages/twenty-front/src/modules/object-record/record-table/components/SelectAllCheckbox.tsx @@ -13,6 +13,7 @@ const StyledContainer = styled.div` height: 32px; justify-content: center; + background-color: ${({ theme }) => theme.background.primary}; `; export const SelectAllCheckbox = () => {