I had a similar issue. I changed some of the code in the anything-popup.js file to set the width and positioning based on the screen width for smaller screens.
Replace
formdiv.style.left = pt.x + "px";
with
const windowWidth = window.innerWidth;
if (AnythingPopup_Width > windowWidth + 20) {
formdiv.style.left = "5%";
formdiv.style.maxWidth = "90%";
} else formdiv.style.left = pt.x + "px";
-
This reply was modified 6 years ago by sarah87.
-
This reply was modified 6 years ago by sarah87.
-
This reply was modified 6 years ago by sarah87.
-
This reply was modified 6 years ago by sarah87.