fix(web): padding (#17320)

This commit is contained in:
Alex 2025-04-01 22:32:54 -05:00 committed by GitHub
parent 50335dc363
commit 95e3b15776
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,7 +62,7 @@
<section class="relative"> <section class="relative">
{#if title || buttons} {#if title || buttons}
<div <div
class="absolute flex h-16 w-full place-items-center justify-between border-b p-4 dark:border-immich-dark-gray dark:text-immich-dark-fg" class="absolute flex h-16 w-full place-items-center justify-between border-b p-2 dark:border-immich-dark-gray dark:text-immich-dark-fg"
> >
<div class="flex gap-2 items-center"> <div class="flex gap-2 items-center">
{#if title} {#if title}
@ -76,7 +76,7 @@
</div> </div>
{/if} {/if}
<div class="{scrollbarClass} scrollbar-stable absolute {hasTitleClass} w-full overflow-y-auto" use:useActions={use}> <div class="{scrollbarClass} absolute {hasTitleClass} w-full overflow-y-auto" use:useActions={use}>
{@render children?.()} {@render children?.()}
</div> </div>
</section> </section>