fix: ensure left panel background fills full height in BaseModalLayout

This commit is contained in:
Alexander Brown
2026-01-17 17:09:53 -08:00
parent b388ba6fff
commit 1b05f7893f

View File

@@ -7,8 +7,8 @@
class="grid h-full w-full transition-[grid-template-columns] duration-300 ease-out"
:style="gridStyle"
>
<nav class="overflow-hidden">
<div v-if="hasLeftPanel" class="min-w-40 max-w-56">
<nav class="h-full overflow-hidden">
<div v-if="hasLeftPanel" class="h-full min-w-40 max-w-56">
<slot name="leftPanel" />
</div>
</nav>