Skip to content
This repository was archived by the owner on Jun 11, 2026. It is now read-only.

Commit 60ebcd4

Browse files
author
cfraz89
authored
fix(website): fix scrolling of docs sidebar when longer than screen height (#556)
1 parent 526ee97 commit 60ebcd4

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

apps/website/src/theme/DocSidebar/Desktop/Content/index.js

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from "react";
2+
import Desktop from "@theme-original/DocSidebar/Desktop";
3+
4+
export default function DesktopWrapper(props) {
5+
return (
6+
<div className="mt-1 [&>div]:!block [&>div]:!max-h-full">
7+
<Desktop {...props} />
8+
</div>
9+
);
10+
}

0 commit comments

Comments
 (0)