From a7954054285f38747fc9728964fca9855fab232a Mon Sep 17 00:00:00 2001 From: 666ghj <670939375@qq.com> Date: Sun, 22 Feb 2026 23:40:40 +0800 Subject: [PATCH] style(home): add overflow-y property to upload zone and adjust alignment for files --- frontend/src/views/Home.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue index cfed8c6..afe01a0 100644 --- a/frontend/src/views/Home.vue +++ b/frontend/src/views/Home.vue @@ -690,6 +690,7 @@ const startSimulation = () => { .upload-zone { border: 1px dashed #CCC; height: 200px; + overflow-y: auto; display: flex; align-items: center; justify-content: center; @@ -698,6 +699,10 @@ const startSimulation = () => { background: #FAFAFA; } +.upload-zone.has-files { + align-items: flex-start; +} + .upload-zone:hover { background: #F0F0F0; border-color: #999;