Update layout.tsx

This commit is contained in:
MacRimi
2025-02-17 22:53:41 +01:00
committed by GitHub
parent 4432cd6815
commit 8cd3cfe1fd

View File

@@ -4,8 +4,8 @@ import Footer from "@/components/footer"
export default function DocsLayout({ children }: { children: React.ReactNode }) {
return (
<div className="flex flex-col min-h-screen bg-white text-gray-900">
<div className="flex flex-col md:flex-row flex-1">
<div className="flex flex-col min-h-screen bg-white text-gray-900 pt-28 md:pt-16">
<div className="flex flex-col md:flex-row flex-1 pt-4 md:pt-0">
<DocSidebar />
<main className="flex-1 p-4 md:p-6">{children}</main>
</div>