From 7c2da40d7dc7aebe2d604be3a900e99760511563 Mon Sep 17 00:00:00 2001 From: Ultrame <1019265060@qq.com> Date: Thu, 4 Dec 2025 16:53:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main_pages/components/MyselfPageContent.tsx | 5 ++++- src/user_pages/edit/index.scss | 2 +- src/user_pages/other/index.tsx | 5 ++++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/main_pages/components/MyselfPageContent.tsx b/src/main_pages/components/MyselfPageContent.tsx index f265d72..27ff916 100644 --- a/src/main_pages/components/MyselfPageContent.tsx +++ b/src/main_pages/components/MyselfPageContent.tsx @@ -237,7 +237,10 @@ const MyselfPageContent: React.FC = () => { isShowNoData={game_records.length === 0} loadMoreMatches={() => {}} collapse={true} - style={{ paddingBottom: 0, overflow: "hidden" }} + style={{ + paddingBottom: ended_game_records.length ? 0 : "90px", + overflow: "hidden", + }} listLoadErrorWrapperHeight="fit-content" listLoadErrorWidth="320px" listLoadErrorHeight="152px" diff --git a/src/user_pages/edit/index.scss b/src/user_pages/edit/index.scss index 58e819d..1ac587f 100644 --- a/src/user_pages/edit/index.scss +++ b/src/user_pages/edit/index.scss @@ -237,7 +237,6 @@ &::placeholder { color: rgba(0, 0, 0, 0.4); - font-weight: unset; } } @@ -254,6 +253,7 @@ text-align: right; &.placeholder { color: rgba(60, 60, 67, 0.3); + font-weight: unset; } } diff --git a/src/user_pages/other/index.tsx b/src/user_pages/other/index.tsx index dc9178c..f24e10f 100644 --- a/src/user_pages/other/index.tsx +++ b/src/user_pages/other/index.tsx @@ -312,7 +312,10 @@ const OtherUserPage: React.FC = () => { emptyText="暂无球局信息" loadMoreMatches={() => {}} collapse={true} - style={{ paddingBottom: 0, overflow: "hidden" }} + style={{ + paddingBottom: ended_game_records.length ? 0 : "90px", + overflow: "hidden", + }} listLoadErrorWrapperHeight="fit-content" listLoadErrorWidth="320px" listLoadErrorHeight="152px"