修复Panel在Area最大化后无法填充满的问题,优化vs-content样式

This commit is contained in:
zqm
2025-11-04 14:50:22 +08:00
parent 83e5071b3b
commit 1a04fdbe33

View File

@@ -358,7 +358,17 @@ onMounted(() => {
.hdr-close:hover { opacity: 1; }
/* 内容区域 */
.vs-content { display: flex; flex: 1; overflow: visible; background-color: #ffffff; position: relative; }
.vs-content {
display: flex;
flex: 1;
overflow: visible;
background-color: #ffffff;
position: relative;
width: 100%;
height: 100%;
min-width: 0;
min-height: 0;
}
/* 左侧输出 */
.vs-left { flex: 1; background: var(--vs-panel); display: flex; }