diff --git a/src/pages/HomePage.vue b/src/pages/HomePage.vue index 7d2b8f7..af6f743 100644 --- a/src/pages/HomePage.vue +++ b/src/pages/HomePage.vue @@ -478,7 +478,7 @@ const medals = ['🥇', '🥈', '🥉']; } .bl-container { - max-width: 1000px; + max-width: 1200px; margin: 0 auto; padding: 0 20px; } diff --git a/src/pages/StatsPage.vue b/src/pages/StatsPage.vue index 931fa73..44656c4 100644 --- a/src/pages/StatsPage.vue +++ b/src/pages/StatsPage.vue @@ -75,12 +75,12 @@ const leaderboards = computed(() => { } return [ - { title: '行走距离', icon: 'fa-walking', color: '#22c55e', top: getTop('walk_raw', p => p.stats.walk_fmt) }, - { title: '放置方块', icon: 'fa-cube', color: '#3b82f6', top: getTop('placed', p => p.stats.placed.toLocaleString()) }, - { title: '挖掘方块', icon: 'fa-hammer', color: '#f59e0b', top: getTop('mined', p => p.stats.mined.toLocaleString()) }, - { title: '死亡次数', icon: 'fa-skull-crossbones', color: '#ef4444', top: getTop('deaths', p => p.stats.deaths.toLocaleString()) }, - { title: '在线时长', icon: 'fa-clock', color: '#8b5cf6', top: getTop('play_time_raw', p => p.stats.play_time_fmt) }, - { title: '击杀数', icon: 'fa-crosshairs', color: '#ec4899', top: getTop('kills', p => p.stats.kills.toLocaleString()) }, + { title: '旅行者', icon: 'fa-walking', color: '#22c55e', top: getTop('walk_raw', p => p.stats.walk_fmt) }, + { title: '搬石大师', icon: 'fa-cube', color: '#3b82f6', top: getTop('placed', p => p.stats.placed.toLocaleString()) }, + { title: '挖挖机', icon: 'fa-hammer', color: '#f59e0b', top: getTop('mined', p => p.stats.mined.toLocaleString()) }, + { title: '亡灵', icon: 'fa-skull-crossbones', color: '#ef4444', top: getTop('deaths', p => p.stats.deaths.toLocaleString()) }, + { title: '尊者', icon: 'fa-clock', color: '#8b5cf6', top: getTop('play_time_raw', p => p.stats.play_time_fmt) }, + { title: '屠夫', icon: 'fa-crosshairs', color: '#ec4899', top: getTop('kills', p => p.stats.kills.toLocaleString()) }, ]; }); @@ -204,7 +204,7 @@ function filteredItems(catKey) {