Fix iframe height for WBT

This commit is contained in:
Christian Cueni 2022-07-26 15:53:33 +02:00
parent 9a7b858cf3
commit 9f263ec657
1 changed files with 10 additions and 1 deletions

View File

@ -82,5 +82,14 @@ const block = computed(() => {
</template>
<style scoped>
<style lang="scss" scoped>
$header-height: 77px;
$footer-height: 57px;
$content-height: $header-height + $footer-height;
.h-screen {
height: calc(100vh - $content-height);
}
</style>