index.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .message-list-container {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .t-message-item {
  6. /*max-width: 60vw;*/
  7. padding: 16rpx 0;
  8. }
  9. .t-recieve-message {
  10. display: flex;
  11. flex-direction: row;
  12. justify-items: flex-end;
  13. align-items:flex-start;
  14. width: 100vw;
  15. }
  16. .t-message-avatar {
  17. margin-left: 20rpx;
  18. margin-right: 12rpx;
  19. border-radius: 10rpx;
  20. width: 80rpx;
  21. height: 80rpx;
  22. }
  23. .t-self-message {
  24. display: flex;
  25. flex-direction: row;
  26. justify-content: flex-end;
  27. /*align-items: center;*/
  28. width: 100vw;
  29. }
  30. .t-self-message-body {
  31. display: flex;
  32. justify-content: flex-start;
  33. flex-wrap: wrap;
  34. outline: none;
  35. }
  36. .t-recieve-message-body {
  37. display: flex;
  38. justify-content: flex-start;
  39. flex-wrap: wrap;
  40. outline: none;
  41. /*background: #F8F8F8;*/
  42. border-radius: 2px 10px 10px 10px;
  43. margin-left: 8rpx;
  44. }
  45. .read-receipts {
  46. line-height: 42px;
  47. height: 42px;
  48. font-size: 12px;
  49. color: #6e7981;
  50. margin-right: 10px
  51. }
  52. .no-message {
  53. text-align: center;
  54. width: 100%;
  55. font-size: 24rpx;
  56. color: #a5b5c1;
  57. height: 60rpx;
  58. line-height: 60rpx;
  59. }