diff --git a/packages/twenty-front/src/modules/ui/layout/right-drawer/components/RightDrawer.tsx b/packages/twenty-front/src/modules/ui/layout/right-drawer/components/RightDrawer.tsx index 6266ad045..2ec927823 100644 --- a/packages/twenty-front/src/modules/ui/layout/right-drawer/components/RightDrawer.tsx +++ b/packages/twenty-front/src/modules/ui/layout/right-drawer/components/RightDrawer.tsx @@ -83,14 +83,23 @@ export const RightDrawer = () => { return <>; } + const variants = { + fullScreen: { + width: '100%', + }, + normal: { + width: rightDrawerWidth, + }, + closed: { + width: 0, + }, + }; + return (