From f7bb6fecaec1c0ff339ded43c5428738f4761b07 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Fri, 23 Jan 2026 10:45:36 -0500 Subject: [PATCH] Remove width constraints on vault form for mobile compatibility --- public/src/uncloseai-embed-modal.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/src/uncloseai-embed-modal.js b/public/src/uncloseai-embed-modal.js index 8426628..6320da0 100644 --- a/public/src/uncloseai-embed-modal.js +++ b/public/src/uncloseai-embed-modal.js @@ -373,12 +373,12 @@ async function openUncloseaiEmbeddedModalNew() { // Vault locked or doesn't exist - show centered prompt using CSS grid vaultSection.style.display = 'grid'; vaultSection.style.placeItems = 'center'; - vaultSection.style.minHeight = '300px'; vaultSection.style.border = 'none'; + vaultSection.style.padding = '20px'; const hasVault = UncloseVault.hasVault(); const promptUI = document.createElement("div"); - promptUI.style.cssText = 'display: grid; gap: 12px; max-width: 320px; width: 100%; text-align: center;'; + promptUI.style.cssText = 'display: grid; gap: 12px; width: 100%; text-align: center;'; promptUI.innerHTML = `
${hasVault ? getUIText("vaultWelcomeBack") : getUIText("vaultLine1")}