refactor: simplify toaster styles in app.css by removing hsl() function calls for improved readability and maintainability

This commit is contained in:
Yoga Pangestu 2026-06-21 11:39:23 +07:00
parent 04897cb3bd
commit c3c8e9f5bd

View File

@ -177,9 +177,9 @@ @layer utilities {
/* Base */ /* Base */
.toaster [data-sonner-toast] { .toaster [data-sonner-toast] {
background: hsl(var(--background)) !important; background: var(--background) !important;
color: hsl(var(--foreground)) !important; color: var(--foreground) !important;
border: 1px solid hsl(var(--border)) !important; border: 1px solid var(--border) !important;
} }
/* Description */ /* Description */