From 88c994454e61b90a2528bcc474093f8d13558879 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Wed, 26 Feb 2025 11:14:30 +0800 Subject: [PATCH] fix(layout): wrap children in a flex-1 div for consistent layout behavior --- src/app/(app)/playground/@workspace/@editor/layout.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/(app)/playground/@workspace/@editor/layout.tsx b/src/app/(app)/playground/@workspace/@editor/layout.tsx index 8dc64c7..4f9d899 100644 --- a/src/app/(app)/playground/@workspace/@editor/layout.tsx +++ b/src/app/(app)/playground/@workspace/@editor/layout.tsx @@ -11,7 +11,9 @@ export default function WorkspaceEditorLayout({ return (
- {children} +
+ {children} +
);