_toasts.scss 335 B

123456789101112131415161718
  1. .toast {
  2. border: $alert-border-width var(--#{$prefix}border-style) $alert-border-color;
  3. box-shadow: $alert-shadow;
  4. .toast-header {
  5. user-select: none;
  6. }
  7. button[data-bs-dismiss="toast"] {
  8. outline: none;
  9. }
  10. }
  11. @each $state, $value in $theme-colors {
  12. .toast-#{$state} {
  13. --#{$prefix}toast-color: #{$value};
  14. }
  15. }