fix: 修复表格滚动条

This commit is contained in:
yarnom 2025-11-06 18:08:01 +08:00
parent 13d24a1322
commit 584e9218b5
2 changed files with 14 additions and 1 deletions

View File

@ -89,7 +89,13 @@
</div>
<div class="table-container" id="tableContainer">
<table-panel [history]="history" [forecast]="forecast" [showPastForecast]="false" [endDate]="end"></table-panel>
<div class="table-scroll">
<table-panel
[history]="history"
[forecast]="forecast"
[showPastForecast]="false"
[endDate]="end"></table-panel>
</div>
</div>
</div>
</div>

View File

@ -281,6 +281,13 @@ body.alert-mode-red::before {
overflow: hidden;
}
.table-scroll {
flex: 1;
min-height: 0;
overflow-y: auto;
overflow-x: auto;
}
.loading-overlay {
position: fixed;
inset: 0;