_alert.scss 678 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Alerts
  2. .alert {
  3. font-weight: 500;
  4. border: none;
  5. // close
  6. .close:focus{
  7. outline: 0;
  8. }
  9. // For Alert Content
  10. p {
  11. font-weight: 500;
  12. padding: 2px 0;
  13. margin-bottom: 0;
  14. vertical-align: middle;
  15. }
  16. span{
  17. vertical-align: middle;
  18. }
  19. // For alert heading
  20. .alert-heading {
  21. font-weight: 700;
  22. font-size: 0.9rem;
  23. padding: 0;
  24. padding-bottom: 8px;
  25. }
  26. // For dark alert
  27. &.alert-dark {
  28. .alert-heading {
  29. @include alert-heading-bs($dark);
  30. }
  31. }
  32. // For light alert
  33. &.alert-light {
  34. .alert-heading {
  35. @include alert-heading-bs($light);
  36. }
  37. }
  38. }