From 280fb3bca29134183766b98f6dcba4cf53b3d3ee Mon Sep 17 00:00:00 2001 From: batuevio Date: Fri, 4 Sep 2026 19:26:10 +0300 Subject: [PATCH] Revert "Fix iframe height v2 (#366)" This reverts commit 81a29da30825d8ac3a521e13e293c063d30c614d. --- src/views/apps/ApplicationFrame.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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 {