diff --git a/src/app/[slug]/workflows/layout.tsx b/src/app/[slug]/workflows/layout.tsx new file mode 100644 index 0000000..fa0c9d9 --- /dev/null +++ b/src/app/[slug]/workflows/layout.tsx @@ -0,0 +1,21 @@ +import type { ReactNode } from "react"; + +// Workflows is full-bleed — the editor (palette + canvas + inspector) +// takes the entire content area, so we strip the standard `.content-inner` +// max-width wrapper. The parent `.content` is already `overflow-y: auto`, +// so we force `min-height: 0` here to let the editor's own grid fill. +export default function WorkflowsLayout({ children }: { children: ReactNode }) { + return ( +