diff --git a/src/views/system/ManuallyCreatingTasks/index.vue b/src/views/system/ManuallyCreatingTasks/index.vue index 82104b3..0918f28 100644 --- a/src/views/system/ManuallyCreatingTasks/index.vue +++ b/src/views/system/ManuallyCreatingTasks/index.vue @@ -342,7 +342,8 @@ export default { .nodes { background-color: #F1F3F5; - height: 700px; + // height: 700px; + height: calc(100vh - 308px); display: flex; justify-content: space-between; padding-top: 20px; @@ -350,9 +351,9 @@ export default { .nodenames { border-radius: 10px; background-color: #fff; - height: 700px; + height: calc(100vh - 308px); width: 25%; - padding: 0 40px 0 40px; + padding: 0 40px 20px 40px; background-color: #fff; overflow: scroll; @@ -370,9 +371,11 @@ export default { } .nodetexts { + padding-bottom: 20px; + overflow: scroll; border-radius: 10px; width: 73%; - height: 700px; + height: calc(100vh - 308px); } }