style.module.less 718 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .actionDynamic {
  2. .comments {
  3. margin-bottom: 15px;
  4. .name {
  5. color: var(--font-1);
  6. }
  7. .time {
  8. display: inline-block;
  9. margin-left: 20px;
  10. color: var(--font-3);
  11. font-size: 12px;
  12. }
  13. .content {
  14. color: var(--font-1);
  15. }
  16. }
  17. .btn {
  18. text-align: right;
  19. margin: 20px 0px;
  20. }
  21. .tabbox {
  22. max-height: 300px;
  23. overflow-y: auto;
  24. // margin: 10px 0px;
  25. }
  26. .changeRecordItem {
  27. margin-bottom: 15px;
  28. color: var(--font-1);
  29. .operator {
  30. display: inline-block;
  31. width: 100px;
  32. }
  33. .remark {
  34. display: inline-block;
  35. flex: 1;
  36. width: 100px;
  37. }
  38. .time {
  39. width: 160px;
  40. margin-left: 16px;
  41. }
  42. }
  43. }