diff --git a/packages/twenty-front/src/modules/page-layout/components/PageLayoutTabListReorderableTab.tsx b/packages/twenty-front/src/modules/page-layout/components/PageLayoutTabListReorderableTab.tsx index 548c5bd951..095574c37e 100644 --- a/packages/twenty-front/src/modules/page-layout/components/PageLayoutTabListReorderableTab.tsx +++ b/packages/twenty-front/src/modules/page-layout/components/PageLayoutTabListReorderableTab.tsx @@ -16,6 +16,7 @@ type PageLayoutTabListReorderableTabProps = { }; const StyledTabContentWrapper = styled.div<{ isBeingEdited: boolean }>` + border-radius: ${themeCssVariables.border.radius.sm}; outline: ${({ isBeingEdited }) => isBeingEdited ? `1px solid ${themeCssVariables.color.blue}` : 'none'}; outline-offset: -1px;