Make error message toasts more visually distinct

This commit is contained in:
shamoon
2023-02-16 19:41:38 -08:00
parent 21c0413240
commit 63782d95ff
2 changed files with 19 additions and 1 deletions

View File

@@ -9,3 +9,14 @@
.toast:not(.show) {
display: block; // this corrects an ng-bootstrap bug that prevented animations
}
::ng-deep .toast.error .toast-header {
background-color: hsla(350, 79%, 40%, 0.8); // bg-danger
border-color: black;
}
::ng-deep .toast.error .toast-body {
background-color: hsla(350, 79%, 40%, 0.8); // bg-danger
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}