修复定时任务日志滚动

This commit is contained in:
whyour
2023-08-25 09:05:32 +08:00
parent 5907553670
commit e7be4999b0
4 changed files with 48 additions and 36 deletions
+10 -2
View File
@@ -39,8 +39,16 @@ body {
.ant-modal-body {
overflow-y: auto;
min-height: 300px;
max-height: 80vh;
max-height: calc(80vh - var(--vh-offset, 0px));
max-height: calc(80vh - 110px);
max-height: calc(80vh - var(--vh-offset, 110px));
padding: 0;
display: flex;
.log-container {
width: 100%;
padding: 24px;
overflow-y: auto;
}
}
pre {