notice-log.component.scss 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .log-item {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. padding: 1.5385vw 2.5641vw;
  6. border-bottom: 0.2564vw solid #f3f3f3;
  7. font-size: 3.5897vw;
  8. .avatar {
  9. width: 9.2308vw;
  10. height: 9.2308vw;
  11. border-radius: 50%;
  12. margin-right: 1.5385vw;
  13. }
  14. .item-col-right {
  15. display: flex;
  16. justify-content: space-between;
  17. flex: 1;
  18. .time {
  19. color: #676767;
  20. margin-top: 1.0256vw;
  21. }
  22. .row-btns {
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: center;
  26. align-items: center;
  27. }
  28. .tg {
  29. border: 0.2564vw solid;
  30. padding: 0vw 1.5385vw;
  31. // background: #0054e9;
  32. color: #0054e9;
  33. border-radius: 1.0256vw;
  34. }
  35. .jj {
  36. color: #c5000f;
  37. margin-top: 1.0256vw;
  38. }
  39. .other {
  40. color: #676767;
  41. }
  42. }
  43. }