tmp-upload #4

Merged
admin merged 33 commits from tmp-upload into main 2025-11-29 02:30:38 +00:00
Showing only changes of commit 03fb2344b4 - Show all commits

View File

@@ -969,7 +969,8 @@ onUnmounted(() => {
} }
} }
.avatar-image-champion { .avatar-image-champion {
object-fit: contain; object-fit: cover;
border-radius: 50%;
} }
/* 冠军模块样式 */ /* 冠军模块样式 */
@@ -1058,15 +1059,17 @@ onUnmounted(() => {
} }
.champion-logo { .champion-logo {
object-fit: contain; object-fit: cover;
max-width: 120px; max-width: 120px;
border-radius: 50%;
} }
.avatar-image { .avatar-image {
width: 30px; width: 30px;
height: 30px; height: 30px;
object-fit: contain; object-fit: cover;
vertical-align: middle; vertical-align: middle;
border-radius: 50%;
} }
.champion-title { .champion-title {
@@ -1981,8 +1984,18 @@ onUnmounted(() => {
.rank-table { .rank-table {
min-height: 250px; min-height: 250px;
/* 移除最大高度限制,允许显示所有行 */ /* 移除最大高度限制,允许显示所有行 */
overflow-x: auto; overflow-x: hidden;
/* 允许横向滚动 */ /* 禁止横向滚动 */
overflow-y: auto;
/* 允许纵向滚动 */
}
/* 移动端英雄排名列表滚动设置 */
.individual-rankings-container .rank-table {
overflow-x: hidden !important;
/* 禁止横向滚动 */
overflow-y: auto !important;
/* 允许纵向滚动 */
} }
.table-header { .table-header {