diff --git a/dist/plex-meets-homeassistant.js b/dist/plex-meets-homeassistant.js index ed34aae..0515ff0 100644 --- a/dist/plex-meets-homeassistant.js +++ b/dist/plex-meets-homeassistant.js @@ -19172,6 +19172,16 @@ style.textContent = css ` padding: 5px 0px; margin: 16px 0 10px 0; } + + .detail::-webkit-scrollbar { + display: none; + } + + .detail { + -ms-overflow-style: none; + scrollbar-width: none; + } + .detail { visibility: hidden; max-height: ${CSS_STYLE.expandedHeight + 16}px; diff --git a/src/modules/style.ts b/src/modules/style.ts index 44c37b6..9744694 100644 --- a/src/modules/style.ts +++ b/src/modules/style.ts @@ -79,6 +79,16 @@ style.textContent = css` padding: 5px 0px; margin: 16px 0 10px 0; } + + .detail::-webkit-scrollbar { + display: none; + } + + .detail { + -ms-overflow-style: none; + scrollbar-width: none; + } + .detail { visibility: hidden; max-height: ${CSS_STYLE.expandedHeight + 16}px;