docs: add user guide to navbar (#11611)

* docs: add user guide to navbar

* fix titles
This commit is contained in:
Shahed Nasser
2025-02-26 11:00:01 +02:00
committed by GitHub
parent b45c1e1580
commit b966198258
10 changed files with 58 additions and 49 deletions
@@ -24,12 +24,12 @@ export const LayoutProvider = ({
const [showCollapsedNavbar, setShowCollapsedNavbar] = useState(false)
useResizeObserver(mainContentRef as React.RefObject<HTMLDivElement>, () => {
if (disableResizeObserver || window.innerWidth < 992) {
if (disableResizeObserver || window.innerWidth < 1100) {
setShowCollapsedNavbar(false)
return
}
if (mainContentRef.current) {
setShowCollapsedNavbar(mainContentRef.current.clientWidth < 992)
setShowCollapsedNavbar(mainContentRef.current.clientWidth < 1100)
}
})