feat: notifications link to relevant pages when available.
This commit is contained in:
parent
75abbb3d51
commit
3081adc945
12 changed files with 59 additions and 12 deletions
|
|
@ -205,11 +205,12 @@
|
|||
<div class="flex items-center justify-center gap-2">
|
||||
{#each tips as _, index}
|
||||
<button
|
||||
aria-label={`Go to page ${index + 1}`}
|
||||
onclick={() => goToPage(index)}
|
||||
class="h-2 w-2 rounded-full transition-colors {index === currentPage
|
||||
? 'bg-primary'
|
||||
: 'bg-muted-foreground/30 hover:bg-muted-foreground/50'}"
|
||||
/>
|
||||
></button>
|
||||
{/each}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Reference in a new issue