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 */
|
/* 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 */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user