fix: force set astro-island css to fix iframe height

This commit is contained in:
Derrick Hammer 2023-10-17 07:45:32 -04:00
parent 2a4e5fd4d0
commit 4ea8e7b35a
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 8 additions and 1 deletions

View File

@ -11,10 +11,17 @@ import "@/styles/globals.scss";
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} /> <meta name="generator" content={Astro.generator} />
<title>Astro</title> <title>Astro</title>
<style>
main astro-island {
display: flex;
flex-direction: column;
height: 89vh;
}
</style>
</head> </head>
<body> <body>
<main> <main>
<App client:only="react" class="w-full h-full" /> <App client:only="react" />
</main> </main>
</body> </body>
</html> </html>