Skip to content

Commit 630fa04

Browse files
authored
Fix dynamic screen height (#3626)
1 parent bf80ae7 commit 630fa04

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<router-view />
33
<ProgressSpinner
44
v-if="isLoading"
5-
class="absolute inset-0 flex justify-center items-center h-screen"
5+
class="absolute inset-0 flex justify-center items-center h-[unset]"
66
/>
77
<GlobalDialog />
88
<BlockUI full-screen :blocked="isLoading" />

src/views/GraphView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="comfyui-body grid h-screen w-screen overflow-hidden">
2+
<div class="comfyui-body grid h-full w-full overflow-hidden">
33
<div id="comfyui-body-top" class="comfyui-body-top">
44
<TopMenubar v-if="useNewMenu === 'Top'" />
55
</div>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<main class="w-full min-h-screen overflow-hidden relative">
2+
<main class="w-full h-full overflow-hidden relative">
33
<router-view />
44
</main>
55
</template>

0 commit comments

Comments
 (0)