mirror of
https://github.com/immich-app/immich.git
synced 2025-01-17 01:06:46 +01:00
fix(web): keep notifications in view when scrolling (#7493)
This commit is contained in:
parent
74d431f881
commit
c88184673a
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if $notificationList.length > 0}
|
{#if $notificationList.length > 0}
|
||||||
<section transition:fade={{ duration: 250 }} id="notification-list" class="absolute right-5 top-[80px] z-[99999999]">
|
<section transition:fade={{ duration: 250 }} id="notification-list" class="fixed right-5 top-[80px] z-[99999999]">
|
||||||
{#each $notificationList as notificationInfo (notificationInfo.id)}
|
{#each $notificationList as notificationInfo (notificationInfo.id)}
|
||||||
<div animate:flip={{ duration: 250, easing: quintOut }}>
|
<div animate:flip={{ duration: 250, easing: quintOut }}>
|
||||||
<NotificationCard {notificationInfo} />
|
<NotificationCard {notificationInfo} />
|
||||||
|
|
Loading…
Reference in a new issue