walletconnect/index.html
alexandermake 5acc24e730 init()
2025-05-07 19:49:59 +03:00

36 lines
861 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta
name="mobile-web-app-capable"
content="yes"
/>
<title>title</title>
</head>
<script type="text/javascript">
const vh = window.innerHeight * 0.01;
document.documentElement.style.setProperty("--vh", `${vh}px`);
window.addEventListener("resize", () => {
const vh = window.innerHeight * 0.01;
document.documentElement.style.setProperty("--vh", `${vh}px`);
});
</script>
<body>
<div id="app"></div>
<noscript>
<strong> no script</strong>
</noscript>
<script
type="module"
src="/src/main.ts"
></script>
</body>
</html>