mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
fix(web): use fixed position for download and upload panel (#11279)
This commit is contained in:
parent
b53bd8c525
commit
950cd5d996
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
{#if $isDownloading}
|
||||
<div
|
||||
transition:fly={{ x: -100, duration: 350 }}
|
||||
class="absolute bottom-10 left-2 z-[10000] max-h-[270px] w-[315px] rounded-2xl border bg-immich-bg p-4 text-sm shadow-sm"
|
||||
class="fixed bottom-10 left-2 z-[10000] max-h-[270px] w-[315px] rounded-2xl border bg-immich-bg p-4 text-sm shadow-sm"
|
||||
>
|
||||
<p class="mb-2 text-xs text-gray-500">{$t('downloading').toUpperCase()}</p>
|
||||
<div class="my-2 mb-2 flex max-h-[200px] flex-col overflow-y-auto text-sm">
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
}
|
||||
uploadAssetsStore.resetStore();
|
||||
}}
|
||||
class="absolute bottom-6 right-6 z-[10000]"
|
||||
class="fixed bottom-6 right-6 z-[10000]"
|
||||
>
|
||||
{#if showDetail}
|
||||
<div
|
||||
|
|
Loading…
Reference in a new issue