This commit is contained in:
MacRimi 2025-02-17 19:13:22 +01:00
parent 51aa442386
commit 6878884d09

View File

@ -67,9 +67,9 @@ export default function RootLayout({
<body className={`${inter.className} bg-background text-foreground antialiased`}> <body className={`${inter.className} bg-background text-foreground antialiased`}>
<Navbar /> <Navbar />
<MouseMoveEffect /> <MouseMoveEffect />
<div className="flex flex-col md:flex-row min-h-screen"> <div className="flex flex-col md:flex-row min-h-screen pt-28 md:pt-16">
<DocSidebar /> <DocSidebar />
<main className="flex-1 p-4 md:p-6 pt-32 md:pt-6">{children}</main> <main className="flex-1 p-4 md:p-6">{children}</main>
</div> </div>
</body> </body>
</html> </html>