Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions resources/js/pages/layout/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ provide('layout', {
<main id="main" class="flex bg-body-bg dark:border-t dark:border-body-border rounded-t-2xl fixed top-14 inset-x-0 bottom-0 min-h-[calc(100vh-3.5rem)]">
<Nav />
<div id="main-content" class="main-content sm:p-2 h-full flex-1 overflow-y-auto rounded-t-2xl">
<div id="content-card" class="relative content-card min-h-full h-full">
<slot />
<div id="content-card" class="relative content-card grid min-h-full">
<div class="w-full">
<slot />
</div>
</div>
</div>
</main>
Expand Down