feat: inform user about automatic reassignments or reset selections

This commit is contained in:
Björn Fromme
2026-03-16 11:59:10 +01:00
parent 57843b8a6f
commit 41d8d65d82
10 changed files with 173 additions and 5 deletions
+20
View File
@@ -0,0 +1,20 @@
@import "toastify-js/src/toastify.css";
.toastify {
@apply shadow-lg rounded;
}
.toastify--success {
@apply text-gray-100;
background: theme('colors.emerald.600');
}
.toastify--warning {
@apply text-gray-100;
background: theme('colors.red.600');
}
.toastify--info {
@apply text-gray-100;
background: theme('colors.primary');
}