diff --git a/packages/twenty-front/src/modules/ui/layout/page/PageHeader.tsx b/packages/twenty-front/src/modules/ui/layout/page/PageHeader.tsx index 5881e5cb2..28b15ecf8 100644 --- a/packages/twenty-front/src/modules/ui/layout/page/PageHeader.tsx +++ b/packages/twenty-front/src/modules/ui/layout/page/PageHeader.tsx @@ -34,7 +34,9 @@ const StyledTopBarContainer = styled.div<{ width?: number }>` width: ${({ width }) => width + 'px' || '100%'}; @media (max-width: ${MOBILE_VIEWPORT}px) { - padding-left: ${({ theme }) => theme.spacing(3)}; + width: 100%; + box-sizing: border-box; + padding: ${({ theme }) => theme.spacing(3)}; } `;