Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_notification.scss 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .all-notification {
  2. a {
  3. display : block;
  4. border-bottom: 1px solid $border-color;
  5. padding : 10px 0px;
  6. &:last-child {
  7. border : 0px;
  8. display : flex;
  9. justify-content: flex-end;
  10. align-items : center;
  11. color : $dark;
  12. padding-bottom : 0px;
  13. i {
  14. margin-left: 5px;
  15. font-size : 18px;
  16. }
  17. }
  18. p {
  19. margin-bottom: 0px;
  20. color : $headings-color;
  21. font-weight : $headings-font-weight;
  22. font-size : 14px;
  23. }
  24. span {
  25. font-size: 13px;
  26. color : $body-color;
  27. }
  28. span {
  29. &.icon {
  30. height : 40px;
  31. width : 40px;
  32. color : $white;
  33. display : flex;
  34. align-items : center;
  35. justify-content: center;
  36. border-radius : 50px;
  37. i {
  38. font-size: 20px;
  39. }
  40. }
  41. &.success {
  42. background: $success;
  43. }
  44. &.fail {
  45. background: $danger;
  46. }
  47. &.pending {
  48. background: $warning;
  49. }
  50. }
  51. }
  52. }