From c12f734831d0ce9056a80a7946ae8aca2f16a4d5 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Fri, 7 Mar 2025 15:11:41 +0800 Subject: [PATCH] chore(layout): update layout to remove full height and adjust min-height --- src/app/layout.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3334173..fdec0f3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,7 +4,8 @@ import { ThemeProvider } from "@/components/theme-provider"; export const metadata: Metadata = { title: "monaco-editor-lsp-next", - description: "A Next.js integration of Monaco Editor with LSP support, free from SSR issues", + description: + "A Next.js integration of Monaco Editor with LSP support, free from SSR issues", }; interface RootLayoutProps { @@ -13,17 +14,15 @@ interface RootLayoutProps { export default function RootLayout({ children }: RootLayoutProps) { return ( - - + + -
- {children} -
+
{children}