Update DocSidebar.tsx

This commit is contained in:
MacRimi 2025-02-17 17:17:02 +01:00 committed by GitHub
parent c807e959b1
commit 9d5a6428a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -109,10 +109,9 @@ export default function DocSidebar() {
}
return (
<nav className="w-full md:w-1/4 lg:w-1/5 xl:w-1/6 max-w-xs bg-gray-100 p-4 md:p-6">
<nav className="w-full md:w-64 bg-gray-100 p-4 md:p-6">
<h2 className="text-lg font-semibold mb-4 text-gray-900">Documentation</h2>
<ul className="space-y-2">{sidebarItems.map(renderMenuItem)}</ul>
</nav>
)
}