diff --git a/wwwroot/app.js b/wwwroot/app.js index c779f44..b5344bb 100644 --- a/wwwroot/app.js +++ b/wwwroot/app.js @@ -687,11 +687,13 @@ function setupCardVisualHover(el, url) { el.classList.remove("hovering"); el.style.backgroundSize = ""; el.style.backgroundPosition = ""; + el.style.backgroundRepeat = ""; }; el.addEventListener("mouseenter", () => { el.classList.add("hovering"); el.style.backgroundSize = "auto"; + el.style.backgroundRepeat = "no-repeat"; el.style.backgroundPosition = "center"; });