Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(UI): formpage missing content shadow #7733

Merged
merged 1 commit into from
Jun 19, 2024
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: 3 additions & 3 deletions packages/ui/src/lib/layouts/FormPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function handleKeydown(e: KeyboardEvent): void {

<svelte:window on:keydown="{handleKeydown}" />

<div class="flex flex-col w-full h-full shadow-pageheader">
<div class="flex flex-col w-full h-full shadow-pageheader bg-[var(--pd-content-bg)]">
<div class="flex flex-row w-full h-fit px-5 pt-4" class:pb-3.5="{inProgress}" class:pb-4="{!inProgress}">
<div class="flex flex-col w-full h-fit">
{#if showBreadcrumb}
Expand Down Expand Up @@ -75,11 +75,11 @@ function handleKeydown(e: KeyboardEvent): void {
<LinearProgress />
{/if}
{#if $$slots.tabs}
<div class="flex flex-row px-2 border-b border-[var(--pd-content-divider)]">
<div class="flex flex-row px-2">
<slot name="tabs" />
</div>
{/if}
<div class="flex w-full h-full bg-[var(--pd-content-bg)] overflow-auto">
<div class="flex w-full h-full overflow-auto">
<slot name="content" />
</div>
</div>