diff --git a/src/views/apps/ApplicationFrame.vue b/src/views/apps/ApplicationFrame.vue index 36fe8fd..3bc2e09 100644 --- a/src/views/apps/ApplicationFrame.vue +++ b/src/views/apps/ApplicationFrame.vue @@ -229,8 +229,13 @@ onMounted(async () => { .iframe { display: block; width: 100%; - height: calc(100vh - var(--v-layout-top) - var(--v-layout-bottom)); - height: calc(100dvh - var(--v-layout-top) - var(--v-layout-bottom)); + min-height: calc(100vh - var(--v-layout-top) - var(--v-layout-bottom)); +} + +@supports (height: 100dvh) { + .iframe { + min-height: calc(100dvh - var(--v-layout-top) - var(--v-layout-bottom)); + } } .exception-container {