From d8b03e5735139180f14b6d3eea34307903c6426c Mon Sep 17 00:00:00 2001 From: Daniel Stock Date: Tue, 4 Nov 2025 13:48:30 +0100 Subject: [PATCH] Make toast titles use normal font weight --- resources/js/layouts/AppLayout.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/layouts/AppLayout.vue b/resources/js/layouts/AppLayout.vue index 7e592ca..8d9188f 100644 --- a/resources/js/layouts/AppLayout.vue +++ b/resources/js/layouts/AppLayout.vue @@ -32,8 +32,8 @@ onMounted(() => { unstyled: true, classes: { toast: 'bg-muted rounded-lg w-80 text-sm shadow-lg/20 p-3 pl-5 flex gap-3', - title: 'font-bold', - description: 'text-', + title: '', + description: '', actionButton: 'bg-background hover:bg-accent border-1 rounded shadow text-foreground px-2 h-8 ml-auto whitespace-nowrap', cancelButton: '', closeButton: 'bg-background hover:bg-accent text-foreground stroke-2 rounded-full w-5 h-5 absolute -left-2 -top-2 flex justify-center items-center shadow-md',