From 76b65a14009e63eb611e82d8299894a5bf4bd1f5 Mon Sep 17 00:00:00 2001 From: smallclover <18363998103@163.com> Date: Sun, 5 Oct 2025 21:08:05 +0900 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=BB=E9=A1=B5=E5=90=84se?= =?UTF-8?q?ction=E9=97=B4=E8=B7=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend_nuxt/pages/users/[id].vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend_nuxt/pages/users/[id].vue b/frontend_nuxt/pages/users/[id].vue index 67232896c..d566046cd 100644 --- a/frontend_nuxt/pages/users/[id].vue +++ b/frontend_nuxt/pages/users/[id].vue @@ -849,7 +849,8 @@ watch(selectedTab, async (val) => { display: flex; flex-direction: column; padding: 20px; - gap: 20px; + row-gap: 40px; /* 行间距 */ + column-gap: 20px; /* 列间距 */ } .summary-title { @@ -888,10 +889,10 @@ watch(selectedTab, async (val) => { } .summary-divider { - margin-top: 20px; display: flex; flex-direction: row; - gap: 20px; + row-gap: 40px; /* 行间距 */ + column-gap: 20px; /* 列间距 */ width: 100%; flex-wrap: wrap; }