From c9ae8804eb23e67d54ad7a6e0805135b777d3e04 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Thu, 8 May 2025 16:55:33 -0700 Subject: [PATCH] feat: remove video overlay --- src/index.ts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/index.ts b/src/index.ts index 73909ef..65350c3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -265,22 +265,6 @@ footer.innerHTML = ` `; -const videoOverlay = document.createElement("video"); -videoOverlay.autoplay = true; -videoOverlay.loop = true; -videoOverlay.muted = true; -videoOverlay.playsInline = true; -videoOverlay.src = "https://cdn.nhcarrigan.com/overlay.webm"; -videoOverlay.style.pointerEvents = "none"; -videoOverlay.style.position = "fixed"; -videoOverlay.style.top = "0"; -videoOverlay.style.left = "0"; -videoOverlay.style.opacity = "0.25"; -videoOverlay.style.width = "100vw"; -videoOverlay.style.height = "100vh"; -videoOverlay.style.objectFit = "cover"; -videoOverlay.style.zIndex = "10000"; - // #endregion // #region Scripts @@ -355,7 +339,6 @@ head?.appendChild(analytics); head?.appendChild(analytics2); body?.appendChild(footer); -body?.appendChild(videoOverlay); body?.appendChild(treeNationBottom); // #endregion