修复任务详情交互样式

This commit is contained in:
whyour
2022-03-13 11:09:31 +08:00
parent bc7f406968
commit 9ee08acf29
2 changed files with 21 additions and 4 deletions
+13
View File
@@ -9,6 +9,19 @@
}
.crontab-detail {
.card-wrapper {
height: 80vh;
height: calc(80vh - var(--vh-offset, 0px));
.ant-card:last-child {
.ant-card-body {
height: calc(80vh - 238px);
height: calc(80vh - var(--vh-offset, 0px) - 238px);
overflow-y: auto;
}
}
}
.ant-modal-body {
background: #eee;
padding: 12px;