refactor: simplify toaster styles in app.css by removing hsl() function calls for improved readability and maintainability
This commit is contained in:
parent
04897cb3bd
commit
c3c8e9f5bd
@ -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 */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user