No Description

ReplyCard.less 780B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .wrapper {
  2. display: flex;
  3. .avatar {
  4. width: 40px;
  5. height: 40px;
  6. margin-left: 22px;
  7. margin-right: 22px;
  8. .avatarImg {
  9. width: 100%;
  10. height: 100%;
  11. border-radius: 50%;
  12. background-position: center;
  13. background-size: cover;
  14. }
  15. }
  16. .content {
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: flex-start;
  20. width: 100%;
  21. & > header {
  22. display: flex;
  23. h4 { margin: 0; }
  24. span { margin-left: 8px; }
  25. }
  26. .toolsWrapper {
  27. display: flex;
  28. justify-content: flex-end;
  29. align-items: center;
  30. .toolsItem {
  31. margin-left: 8px;
  32. margin-right: 8px;
  33. display: flex;
  34. .btnCount {
  35. margin-left: 2px;
  36. }
  37. }
  38. }
  39. }
  40. }