mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-30 11:11:53 +00:00
Fix dynamic screen height (#3626)
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
<router-view />
|
<router-view />
|
||||||
<ProgressSpinner
|
<ProgressSpinner
|
||||||
v-if="isLoading"
|
v-if="isLoading"
|
||||||
class="absolute inset-0 flex justify-center items-center h-screen"
|
class="absolute inset-0 flex justify-center items-center h-[unset]"
|
||||||
/>
|
/>
|
||||||
<GlobalDialog />
|
<GlobalDialog />
|
||||||
<BlockUI full-screen :blocked="isLoading" />
|
<BlockUI full-screen :blocked="isLoading" />
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="comfyui-body grid h-screen w-screen overflow-hidden">
|
<div class="comfyui-body grid h-full w-full overflow-hidden">
|
||||||
<div id="comfyui-body-top" class="comfyui-body-top">
|
<div id="comfyui-body-top" class="comfyui-body-top">
|
||||||
<TopMenubar v-if="useNewMenu === 'Top'" />
|
<TopMenubar v-if="useNewMenu === 'Top'" />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<main class="w-full min-h-screen overflow-hidden relative">
|
<main class="w-full h-full overflow-hidden relative">
|
||||||
<router-view />
|
<router-view />
|
||||||
</main>
|
</main>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user