fix: resolve scrolling issue in Hierarchy Analysis Result page by using flex layout

This commit is contained in:
sladro 2025-12-08 11:18:44 +08:00
parent f44244fec8
commit 35afdef50f

View File

@ -406,6 +406,9 @@ watch(() => props.analysisData, () => {
.hierarchy-analysis-result-page {
padding: var(--spacing-2xl);
height: 100%;
display: flex;
flex-direction: column;
overflow: hidden;
}
.page-header {
@ -432,7 +435,10 @@ watch(() => props.analysisData, () => {
}
.page-content {
height: calc(100% - 100px);
flex: 1;
overflow-y: auto;
min-height: 0;
padding-bottom: var(--spacing-xl);
}
/* 层级分析结果容器 */