diff --git a/src/components/ha-sidebar.ts b/src/components/ha-sidebar.ts index 7036ab6d71..f443ca9eee 100644 --- a/src/components/ha-sidebar.ts +++ b/src/components/ha-sidebar.ts @@ -810,6 +810,7 @@ class HaSidebar extends SubscribeMixin(LitElement) { } tooltip.innerHTML = item.querySelector(".item-text")!.innerHTML; tooltip.style.display = "block"; + tooltip.style.position = "fixed"; tooltip.style.top = `${top}px`; tooltip.style.left = `${item.offsetLeft + item.clientWidth + 4}px`; } @@ -840,6 +841,7 @@ class HaSidebar extends SubscribeMixin(LitElement) { haStyleScrollbar, css` :host { + overflow: visible; height: 100%; display: block; overflow: hidden;