From 4e375adcee863eba6d5aad3bdae525e51933b24f Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sun, 7 Jun 2026 17:44:49 +0200 Subject: [PATCH] style: migrate z-index syntax in toast --- static/toast.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/toast.ts b/static/toast.ts index c63b850..e4c9173 100644 --- a/static/toast.ts +++ b/static/toast.ts @@ -11,7 +11,7 @@ const toastContainer = (): HTMLElement => { if (!container) { container = document.createElement("div"); container.id = "toast-container"; - container.className = "fixed bottom-4 right-4 z-[100] flex flex-col gap-2"; + container.className = "fixed bottom-4 right-4 z-100 flex flex-col gap-2"; container.setAttribute("role", "status"); container.setAttribute("aria-live", "polite"); container.setAttribute("aria-relevant", "additions");