_toasts.scss 451 B

123456789101112131415161718
  1. .toast {
  2. color: $toast-color-alt;
  3. background-color: $toast-background-color-alt;
  4. border: $toast-border-width solid $toast-border-color-alt;
  5. box-shadow: $toast-box-shadow-alt;
  6. // DO I NEED THIS?
  7. // &:not(.showing):not(.show) {
  8. // opacity: 0;
  9. // }
  10. }
  11. .toast-header {
  12. color: $toast-header-color-alt;
  13. background-color: $toast-header-background-color-alt;
  14. border-bottom: $toast-border-width solid $toast-header-border-color-alt;
  15. }