diff --git a/packages/twenty-front/src/modules/ui/layout/show-page/components/ShowPageSubContainer.tsx b/packages/twenty-front/src/modules/ui/layout/show-page/components/ShowPageSubContainer.tsx index e08946ee4..eaeb6986e 100644 --- a/packages/twenty-front/src/modules/ui/layout/show-page/components/ShowPageSubContainer.tsx +++ b/packages/twenty-front/src/modules/ui/layout/show-page/components/ShowPageSubContainer.tsx @@ -38,6 +38,7 @@ const StyledTabListContainer = styled.div<{ shouldDisplay: boolean }>` const StyledContentContainer = styled.div<{ isInRightDrawer: boolean }>` flex: 1; overflow-y: auto; + background: ${({ theme }) => theme.background.primary}; padding-bottom: ${({ theme, isInRightDrawer }) => isInRightDrawer ? theme.spacing(16) : 0}; `;