This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Adam Argyle
nerdy.dev
did:plc:jnj7wcwuvspxdsipmecmx7rs
#CSS tip
(this may sound obscure)
🙉 dont:
overflow-x: auto;
overscroll-behavior: contain; 👈
🐵 do:
overflow-x: auto;
overscroll-behavior-x: contain; ✅
🐒 why?
the page may feel unresponsive! trying to vertically scroll on a "x" scroller that's containing x & y gestures, traps the y gesture.
2024-11-20T04:59:04.177Z