12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .message-list-container {
- width: 100%;
- height: 100%;
- }
- .t-message-item {
- /*max-width: 60vw;*/
- padding: 16rpx 0;
- }
- .t-recieve-message {
- display: flex;
- flex-direction: row;
- justify-items: flex-start;
- align-items: center;
- width: 100vw;
- }
- .t-message-avatar {
- margin-left: 20rpx;
- margin-right: 12rpx;
- border-radius: 10rpx;
- width: 80rpx;
- height: 80rpx;
- }
- .t-self-message {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- /*align-items: center;*/
- width: 100vw;
- }
- .t-self-message-body {
- display: flex;
- justify-content: flex-start;
- flex-wrap: wrap;
- outline: none;
- }
- .t-recieve-message-body {
- display: flex;
- justify-content: flex-start;
- flex-wrap: wrap;
- outline: none;
- /*background: #F8F8F8;*/
- border-radius: 2px 10px 10px 10px;
- margin-left: 8rpx;
- }
- .read-receipts {
- line-height: 42px;
- height: 42px;
- font-size: 12px;
- color: #6e7981;
- margin-right: 10px
- }
- .no-message {
- text-align: center;
- position: fixed;
- width: 100%;
- font-size: 12px;
- color: #a5b5c1;
- height: 40px;
- top: -40px;
- right: 0;
- }
|