Skip to content

Commit

Permalink
fix(web): keep notifications in view when scrolling (#7493)
Browse files Browse the repository at this point in the history
  • Loading branch information
michelheusschen committed Feb 28, 2024
1 parent 74d431f commit c881846
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</script>

{#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)}
<div animate:flip={{ duration: 250, easing: quintOut }}>
<NotificationCard {notificationInfo} />
Expand Down

0 comments on commit c881846

Please sign in to comment.