This commit is contained in:
ChenQiuYu 2025-05-08 17:06:41 +08:00
parent 69f127aa25
commit 7dc1cd81b0
1 changed files with 5 additions and 4 deletions

View File

@ -221,6 +221,7 @@ watch(() => curStatus.value, () => {
.list-item { .list-item {
height: 48px; height: 48px;
display: flex; display: flex;
justify-content: space-between;
align-items: center; align-items: center;
padding: 0 18px; padding: 0 18px;
font-weight: 400; font-weight: 400;
@ -230,13 +231,13 @@ watch(() => curStatus.value, () => {
cursor: pointer; cursor: pointer;
span { span {
flex: 1;
display: flex; display: flex;
align-items: center; align-items: center;
.avatar { .avatar {
margin-left: 15px;
width: 26px; width: 26px;
height: 26px; height: 26px;
margin-right: 15px;
} }
} }
@ -245,17 +246,17 @@ watch(() => curStatus.value, () => {
} }
.item_name { .item_name {
flex: 1.5;
white-space: nowrap; // white-space: nowrap; //
overflow: hidden; // overflow: hidden; //
text-overflow: ellipsis; // text-overflow: ellipsis; //
} }
.item_time { .item_time {
flex: 2;
white-space: nowrap; // white-space: nowrap; //
overflow: hidden; // overflow: hidden; //
text-overflow: ellipsis; // text-overflow: ellipsis; //
text-align: center;
margin-right: 24px;
} }
} }