Add Manage and Placement sections in widget side panel page for record page layouts (#19310)

https://github.com/user-attachments/assets/f6120c2e-95e7-4b9b-abb5-69a10c3f2f3b
This commit is contained in:
Baptiste Devessier
2026-04-07 16:21:35 +02:00
committed by GitHub
parent e048d03872
commit 1f3965e5f8
60 changed files with 3364 additions and 235 deletions
@@ -0,0 +1,14 @@
import { styled } from '@linaria/react';
import { themeCssVariables } from 'twenty-ui/theme-constants';
const StyledFormContainer = styled.div`
padding-inline: ${themeCssVariables.spacing[1]};
`;
export const SidePanelGroupFormContainer = ({
children,
}: {
children: React.ReactNode;
}) => {
return <StyledFormContainer>{children}</StyledFormContainer>;
};