From c3c8e9f5bd614bd437b9c31991d9ed613dff0e76 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Sun, 21 Jun 2026 11:39:23 +0700 Subject: [PATCH] refactor: simplify toaster styles in app.css by removing hsl() function calls for improved readability and maintainability --- resources/css/app.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/css/app.css b/resources/css/app.css index cdf1506..f5f9177 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -177,9 +177,9 @@ @layer utilities { /* Base */ .toaster [data-sonner-toast] { - background: hsl(var(--background)) !important; - color: hsl(var(--foreground)) !important; - border: 1px solid hsl(var(--border)) !important; + background: var(--background) !important; + color: var(--foreground) !important; + border: 1px solid var(--border) !important; } /* Description */