diff --git a/dist/plex-meets-homeassistant.js b/dist/plex-meets-homeassistant.js index 7218844..d87a8d6 100644 --- a/dist/plex-meets-homeassistant.js +++ b/dist/plex-meets-homeassistant.js @@ -22092,6 +22092,8 @@ class PlexMeetsHomeAssistant extends HTMLElement { this.content.innerHTML = this.loadCustomStyles(); if (this.useHorizontalScroll) { this.content.style.overflowX = 'auto'; + this.content.style.zIndex = '1'; + this.content.style.position = 'relative'; this.content.style.whiteSpace = 'nowrap'; } if (this.error !== '') { diff --git a/src/plex-meets-homeassistant.ts b/src/plex-meets-homeassistant.ts index bcae08c..76d30a9 100644 --- a/src/plex-meets-homeassistant.ts +++ b/src/plex-meets-homeassistant.ts @@ -719,6 +719,8 @@ class PlexMeetsHomeAssistant extends HTMLElement { this.content.innerHTML = this.loadCustomStyles(); if (this.useHorizontalScroll) { this.content.style.overflowX = 'auto'; + this.content.style.zIndex = '1'; + this.content.style.position = 'relative'; this.content.style.whiteSpace = 'nowrap'; }