import wixWindow from 'wix-window';
import { onReady } from 'wix-window';
$w.onReady(() => {
// Mobile only
if (wixWindow.formFactor === "Mobile") {
// Wait for Wix to fully build the DOM
setTimeout(() => {
const element = document.getElementById("#mobileButton1");
if (element) {
// Force Wix to let us control the element
element.style.position = "fixed";
element.style.bottom = "10px";
element.style.left = "10px";
element.style.zIndex = "99999"; // Always on top
element.style.pointerEvents = "auto"; // Clickable
} else {
console.warn("mobileText1 not found");
}
}, 500); // Delay required for Wix mobile DOM
}
});