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:
committed by
GitHub
parent
e048d03872
commit
1f3965e5f8
+14
@@ -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>;
|
||||
};
|
||||
Reference in New Issue
Block a user