@@ -154,9 +154,11 @@ onUnmounted(async () => {
margin: 0;
padding: 0;
height: 100%;
+ position: relative;
}
.task-image-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
@@ -164,12 +166,16 @@ onUnmounted(async () => {
overflow: auto;
padding: 20px;
- padding-bottom: 300px;
+ padding-bottom: 100px;
+ box-sizing: border-box; /* 确保内边距不会增加高度 */
>div {
margin-right: 20px;
margin-bottom: 20px;
+ >div:last-of-type {
+ //margin-bottom: 100px;
+ }
</style>