fix: change install prompt button display from block to inline-block

This commit is contained in:
2025-01-29 18:47:38 +00:00
parent cde18f8181
commit fbf39cdc5f
+1 -1
View File
@@ -52,7 +52,7 @@ let installPrompt = null
const result = await installPrompt.prompt()
console.info(result.outcome)
})
button.style.display = 'block'
button.style.display = 'inline-block'
});
;