add width + height 100% to app root

This commit is contained in:
2025-07-16 10:21:08 +02:00
parent d0d54b09ba
commit 990f196984

View File

@@ -18,3 +18,13 @@ store.warrens = await getWarrens();
<NuxtPage />
</NuxtLayout>
</template>
<style>
html,
body,
#__nuxt,
#__layout {
width: 100%;
height: 100%;
}
</style>