From 9415058781607bcd784f43a332815b53d202303d Mon Sep 17 00:00:00 2001 From: batuevio Date: Fri, 4 Sep 2026 19:07:10 +0300 Subject: [PATCH] Fix iframe height v2 --- src/views/apps/ApplicationFrame.vue | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/views/apps/ApplicationFrame.vue b/src/views/apps/ApplicationFrame.vue index 3bc2e09..36fe8fd 100644 --- a/src/views/apps/ApplicationFrame.vue +++ b/src/views/apps/ApplicationFrame.vue @@ -229,13 +229,8 @@ onMounted(async () => { .iframe { display: block; width: 100%; - 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)); - } + height: calc(100vh - var(--v-layout-top) - var(--v-layout-bottom)); + height: calc(100dvh - var(--v-layout-top) - var(--v-layout-bottom)); } .exception-container {