Skip to content

Commit 7868812

Browse files
committed
Rename rank categories
1 parent ecc9aac commit 7868812

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

pages/rollup/rank/[slug].vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,10 +673,10 @@ onMounted(() => {
673673
.good {
674674
background-image: linear-gradient(var(--blue), var(--rare));
675675
}
676-
.poor {
676+
.normal {
677677
background-image: linear-gradient(var(--txt-primary), var(--txt-tertiary));
678678
}
679-
.bad {
679+
.offline {
680680
background-image: linear-gradient(var(--txt-tertiary), var(--txt-tertiary));
681681
}
682682

services/constants/rollups.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ export const rankCategories = [
1616
{ min: 9, max: 10, name: "Legendary", color: "legendary" },
1717
{ min: 6, max: 8, name: "Epic", color: "epic" },
1818
{ min: 3, max: 5, name: "Good", color: "rare" },
19-
{ min: 1, max: 2, name: "Poor", color: "primary" },
20-
{ min: 0, max: 1, name: "Bad", color: "tertiary" },
19+
{ min: 1, max: 2, name: "Normal", color: "primary" },
20+
{ min: 0, max: 1, name: "Offline", color: "tertiary" },
2121
]
2222

2323
export const getRankCategory = (rank) => {

0 commit comments

Comments
 (0)