样式优化

This commit is contained in:
2025-12-04 16:53:43 +08:00
parent 0fb933e864
commit 7c2da40d7d
3 changed files with 9 additions and 3 deletions

View File

@@ -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"

View File

@@ -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;
}
}

View File

@@ -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"