From bfb60aba6c634562fcbb64b8105d6da98a58de17 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Mon, 24 Feb 2025 12:32:03 +0800 Subject: [PATCH] fix(layout): adjust height and flex properties for improved layout responsiveness --- src/app/(app)/layout.tsx | 4 ++-- src/app/(app)/playground/@description/layout.tsx | 6 +++--- src/app/(app)/playground/@workspace/layout.tsx | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx index fa7f7a0..ed92a0c 100644 --- a/src/app/(app)/layout.tsx +++ b/src/app/(app)/layout.tsx @@ -6,9 +6,9 @@ interface AppLayoutProps { export default function AppLayout({ children }: AppLayoutProps) { return ( -
+
-
+
{children}
diff --git a/src/app/(app)/playground/@description/layout.tsx b/src/app/(app)/playground/@description/layout.tsx index beabf91..f32155f 100644 --- a/src/app/(app)/playground/@description/layout.tsx +++ b/src/app/(app)/playground/@description/layout.tsx @@ -8,8 +8,8 @@ interface DescriptionLayoutProps { export default function DescriptionLayout({ children }: DescriptionLayoutProps) { return ( - - + + - + {children} diff --git a/src/app/(app)/playground/@workspace/layout.tsx b/src/app/(app)/playground/@workspace/layout.tsx index 761b844..7d6c024 100644 --- a/src/app/(app)/playground/@workspace/layout.tsx +++ b/src/app/(app)/playground/@workspace/layout.tsx @@ -8,8 +8,8 @@ interface WorkspaceLayoutProps { export default function WorkspaceLayout({ children }: WorkspaceLayoutProps) { return ( - - + + - + {children}