21 lines
360 B
CSS
21 lines
360 B
CSS
@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.blue.600');
|
|
}
|