We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a070e commit c407d83Copy full SHA for c407d83
components/PlayerElo.vue
@@ -32,6 +32,19 @@ import { ChevronUpIcon } from "lucide-vue-next";
32
<!-- Hover Content -->
33
<HoverCardContent class="w-56">
34
<div class="space-y-2 text-sm">
35
+ <div class="flex items-center justify-between">
36
+ <span :class="['text-muted-foreground']"> Competitive </span>
37
+
38
+ <span
39
+ v-if="competitiveElo"
40
+ class="font-mono font-semibold"
41
+ :class="getEloColorClass(competitiveElo)"
42
+ >
43
+ {{ competitiveElo }}
44
+ </span>
45
+ <span v-else class="text-muted-foreground">—</span>
46
+ </div>
47
48
<div class="flex items-center justify-between">
49
<span :class="['text-muted-foreground']"> Duel </span>
50
0 commit comments