footer : disable pointer events when hidden #57
All checks were successful
Deploy / Deploy to Production (push) Successful in 28s

This commit is contained in:
isUnknown 2026-04-14 09:58:23 +02:00
parent 4dc937addd
commit 5c2c015850

View file

@ -127,6 +127,10 @@
footer.hidden {
transform: translateY(var(--footer-height));
pointer-events: none !important;
}
footer.hidden * {
pointer-events: none !important;
}
/* --- Main row --- */