建造模拟板块表格添加内部滚动:限制表格高度不超过图片,多余内容可向下滚动

This commit is contained in:
2026-06-03 06:04:30 +08:00
parent 5a0018d1b5
commit d26b4fbcee
2 changed files with 162 additions and 132 deletions

View File

@@ -1075,6 +1075,17 @@ body {
.layout-table-right {
flex: 1.5;
max-height: 500px;
overflow-y: auto;
overflow-x: hidden;
}
/* 表格容器 - 用于限制表格高度并添加滚动 */
.table-container {
max-height: 500px;
overflow-y: auto;
overflow-x: hidden;
border-radius: var(--border-radius);
}
/* ========================================