fix(apps): public apps can take full height

This commit is contained in:
Ruben Fiszel
2024-10-29 12:40:50 +01:00
parent b0b9180fb9
commit 703db7d441
2 changed files with 2 additions and 2 deletions

View File

@@ -218,7 +218,7 @@
<svelte:window on:hashchange={hashchange} on:resize={resizeWindow} />
<div class="relative h-full grow" bind:clientHeight={appHeight}>
<div class="relative min-h-full grow" bind:clientHeight={appHeight}>
<div id="app-editor-top-level-drawer" />
<div id="app-editor-select" />

View File

@@ -137,7 +137,7 @@
{#key app}
<div
class={twMerge(
'min-h-screen h-full w-full',
'min-h-screen h-full w-full flex',
app?.value?.['css']?.['app']?.['viewer']?.class,
'wm-app-viewer'
)}