Add Toastify customizations to global CSS to reduce need for inline styling.

Improve theme handling in LyricSearch component
This commit is contained in:
2025-07-31 19:53:45 -04:00
parent c513b15d13
commit 7a22d8056b
3 changed files with 59 additions and 49 deletions

View File

@@ -251,3 +251,20 @@ Custom
background-color: rgba(255, 255, 255, 0.9);
}
/*
Toastify customizations
*/
.Toastify__toast--error {
background-color: rgba(255, 0, 0, 0.5) !important;
color: inherit !important;
}
.Toastify__toast--info {
background-color: rgba(217, 242, 255, 0.8) !important;
color: #000 !important;
}
.Toastify__toast--success {
background-color: rgba(46, 186, 106, 1) !important;
color: inherit !important;
}