fix(export): increase default session list viewport to 10 rows

This commit is contained in:
tisonhuang
2026-03-05 12:34:23 +08:00
parent 8a30e9b663
commit 26d38acddb

View File

@@ -991,6 +991,9 @@
}
.table-wrap {
--contacts-row-height: 76px;
--contacts-default-visible-rows: 10;
--contacts-default-list-height: calc(var(--contacts-row-height) * var(--contacts-default-visible-rows));
--contacts-select-col-width: 34px;
--contacts-message-col-width: 120px;
--contacts-action-col-width: 280px;
@@ -1176,8 +1179,8 @@
.contacts-list {
flex: 1;
min-height: 360px;
height: clamp(360px, 62vh, 760px);
min-height: var(--contacts-default-list-height);
height: var(--contacts-default-list-height);
overflow: hidden;
padding: 0 12px 12px;
}