Fix iframe height for WBT
This commit is contained in:
parent
9a7b858cf3
commit
9f263ec657
|
|
@ -82,5 +82,14 @@ const block = computed(() => {
|
||||||
|
|
||||||
</template>
|
</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>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue