This commit is contained in:
2024-04-12 16:01:16 +08:00
parent 81eba4a1a7
commit 7da04d7454

View File

@ -342,7 +342,8 @@ export default {
.nodes { .nodes {
background-color: #F1F3F5; background-color: #F1F3F5;
height: 700px; // height: 700px;
height: calc(100vh - 308px);
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding-top: 20px; padding-top: 20px;
@ -350,9 +351,9 @@ export default {
.nodenames { .nodenames {
border-radius: 10px; border-radius: 10px;
background-color: #fff; background-color: #fff;
height: 700px; height: calc(100vh - 308px);
width: 25%; width: 25%;
padding: 0 40px 0 40px; padding: 0 40px 20px 40px;
background-color: #fff; background-color: #fff;
overflow: scroll; overflow: scroll;
@ -370,9 +371,11 @@ export default {
} }
.nodetexts { .nodetexts {
padding-bottom: 20px;
overflow: scroll;
border-radius: 10px; border-radius: 10px;
width: 73%; width: 73%;
height: 700px; height: calc(100vh - 308px);
} }
} }