web.scss 767 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .message-system {
  2. flex: 1;
  3. }
  4. .list {
  5. flex: 1;
  6. height: 100%;
  7. overflow-y: auto;
  8. min-width: 600px;
  9. li {
  10. display: flex;
  11. align-items: center;
  12. position: relative;
  13. padding:10px 20px;
  14. font-size: 14px;
  15. .icon {
  16. margin-right: 10px;
  17. border-radius: 100%;
  18. }
  19. .message-label {
  20. max-width: 50px;
  21. }
  22. .btn-box {
  23. padding: 0 12px;
  24. }
  25. }
  26. }
  27. .icon {
  28. display: inline-block;
  29. width: 16px;
  30. height: 16px;
  31. &-warn {
  32. border-radius: 50%;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. }
  37. }
  38. .btn {
  39. padding: 2px 10px;
  40. margin-right: 12px;
  41. border-radius: 4px;
  42. border: none;
  43. font-size: 14px;
  44. text-align: center;
  45. line-height: 20px;
  46. &:last-child {
  47. margin-right: 0;
  48. }
  49. }