diff --git a/custom_components/browser_mod/browser_mod.js b/custom_components/browser_mod/browser_mod.js index 83d8d4b..864a6fd 100644 --- a/custom_components/browser_mod/browser_mod.js +++ b/custom_components/browser_mod/browser_mod.js @@ -1186,6 +1186,13 @@ const RequireInteractMixin = (SuperClass) => { opacity: 0.5; --mdc-icon-size: 48px; } + ha-icon::before { + content: "browser_mod"; + font-size: 0.75rem; + position: absolute; + right: 0; + bottom: 90%; + } video { display: none; } diff --git a/js/plugin/require-interact.ts b/js/plugin/require-interact.ts index b53cc06..210718a 100644 --- a/js/plugin/require-interact.ts +++ b/js/plugin/require-interact.ts @@ -33,6 +33,13 @@ export const RequireInteractMixin = (SuperClass) => { opacity: 0.5; --mdc-icon-size: 48px; } + ha-icon::before { + content: "browser_mod"; + font-size: 0.75rem; + position: absolute; + right: 0; + bottom: 90%; + } video { display: none; }