修复桌面端界面显示与稳定性问题

This commit is contained in:
Cheng Zhou
2026-07-09 13:53:01 +08:00
parent 0aceb1fd74
commit fd4208d06f
38 changed files with 136 additions and 104 deletions
+2 -3
View File
@@ -807,9 +807,8 @@ onBeforeUnmount(() => {
display: grid;
grid-template-columns: 232px minmax(0, 1fr);
width: 100%;
/* height 让组件有确定高度,配合 dialog body 的 flex:1 撑满容器
* 若 dialog 比 700px 高,组件会通过 flex:1 继续撑大 */
height: min(700px, calc(100vh - 96px));
height: 700px;
max-height: calc(100vh - 96px);
overflow: hidden;
background: var(--pref-bg-pane);
border-radius: 8px;