We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 588eb2b commit 11704e3Copy full SHA for 11704e3
apps/site/app/docs/layout.tsx
@@ -4,13 +4,7 @@ import { DocsLayout } from 'fumadocs-ui/layouts/docs';
4
5
export default function Layout({ children }: { children: ReactNode }) {
6
return (
7
- <DocsLayout
8
- tree={source.pageTree}
9
- nav={{ title: 'Object UI' }}
10
- sidebar={{
11
- defaultOpenLevel: 1,
12
- }}
13
- >
+ <DocsLayout tree={source.pageTree} nav={{ title: 'Object UI' }}>
14
{children}
15
</DocsLayout>
16
);
apps/site/app/global.css
@@ -1,10 +1,3 @@
1
@tailwind base;
2
@tailwind components;
3
@tailwind utilities;
-
-/* Fix for docs sidebar height - ensure it extends to full viewport */
-aside[role="complementary"],
-[role="complementary"] {
- inset-block-end: 0 !important;
- height: 100vh !important;
-}
0 commit comments