fix: resolve scrolling issue in Hierarchy Analysis Result page by using flex layout
This commit is contained in:
parent
f44244fec8
commit
35afdef50f
@ -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);
|
||||
}
|
||||
|
||||
/* 层级分析结果容器 */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user