fix: hydration problem on default layout (#831)
This commit is contained in:
parent
c48ee6c35b
commit
731d68d53d
3 changed files with 3 additions and 12 deletions
|
@ -47,7 +47,7 @@ const showUserPicker = logicAnd(
|
|||
</slot>
|
||||
</div>
|
||||
</aside>
|
||||
<div w-full min-h-screen :class="wideLayout ? 'xl:w-full sm:w-600px' : 'sm:w-600px md:shrink-0'" border-base>
|
||||
<div w-full min-h-screen :class="isHydrated && wideLayout ? 'xl:w-full sm:w-600px' : 'sm:w-600px md:shrink-0'" border-base>
|
||||
<div min-h="[calc(100vh-3.5rem)]" sm:min-h-screen>
|
||||
<slot />
|
||||
</div>
|
||||
|
@ -56,7 +56,7 @@ const showUserPicker = logicAnd(
|
|||
<NavBottom v-if="isHydrated" />
|
||||
</div>
|
||||
</div>
|
||||
<aside v-if="!wideLayout" class="hidden sm:none lg:block w-1/4 zen-hide">
|
||||
<aside v-if="isHydrated && !wideLayout" class="hidden sm:none lg:block w-1/4 zen-hide">
|
||||
<div sticky top-0 h-screen flex="~ col" gap-2 py3 ms-2>
|
||||
<slot name="right">
|
||||
<div flex-auto />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue