refactor(hunt): Style hunt admin

This commit is contained in:
2026-08-03 01:57:35 +02:00
parent 2d8669708d
commit 8e5e60da87
11 changed files with 556 additions and 463 deletions
+8 -7
View File
@@ -54,11 +54,14 @@ export type Team = Data['teams'][number];
>
</div>
<template v-else>
<h1>teams</h1>
<VaButton color="success" icon="replay" @click="refresh"
>Refresh</VaButton
>
<VaAccordion v-if="data" stateful>
<h1 class="mb-4 text-3xl">
Teams
<VaButton color="success" icon="replay" @click="refresh"
>Refresh</VaButton
>
</h1>
<VaAccordion v-if="data" stateful inset>
<Team
v-for="team in data.teams"
:key="team.id"
@@ -70,5 +73,3 @@ export type Team = Data['teams'][number];
</template>
</div>
</template>
<style scoped></style>