diff --git a/frontend/src/app/components/resizer/main-menu-toggle.service.ts b/frontend/src/app/components/resizer/main-menu-toggle.service.ts index 2ef45d62ec..d656de3bea 100644 --- a/frontend/src/app/components/resizer/main-menu-toggle.service.ts +++ b/frontend/src/app/components/resizer/main-menu-toggle.service.ts @@ -144,6 +144,13 @@ export class MainMenuToggleService { } public saveWidth(width?:number):void { + // Leave a minimum amount of space for space fot the content + let maxMenuWidth = window.innerWidth - 520; + + if (width != undefined && width > maxMenuWidth) { + width = maxMenuWidth; + } + this.setWidth(width); window.OpenProject.guardedLocalStorage(this.localStorageKey, String(this.elementWidth)); this.setToggleTitle();