fix(notifications): use bg-surface on <li> rows

bg-canvas matched the page background making rows invisible against it.
bg-surface gives each row the correct card/surface color (white in light,
dark panel in dark mode), matching what was always intended.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-03-29 15:32:18 +02:00
committed by marcel
parent 79185a2e34
commit 29634c7f7a

View File

@@ -205,7 +205,7 @@ function typeBadgeLabel(type: NotificationItem['type']): string {
class="divide-y divide-line rounded-sm border border-line bg-canvas shadow-sm"
>
{#each allNotifications as n (n.id)}
<li class="relative bg-canvas">
<li class="relative bg-surface">
<a
href="/documents/{n.documentId}"
role="row"