Improve UI elements readability

master
John Montagu, the 4th Earl of Sandvich 2024-11-19 00:38:07 -08:00
parent c67bf14980
commit 6f504802d7
Signed by: sandvich
GPG Key ID: 9A39BE37E602B22D
2 changed files with 5 additions and 3 deletions

View File

@ -171,13 +171,15 @@ const rightIndicator = computed(() => {
/>
</div>
</template>
<span v-else>
<span v-else class="aside">
No roles
</span>
</div>
</td>
<td>
{{ player.playtime.toFixed(1) }} hours
<span :class="{ 'aside': player.playtime == 0}">
{{ player.playtime.toFixed(1) }} hours
</span>
</td>
<td>
{{ new Date(player.createdAt).toLocaleString() }}

View File

@ -133,7 +133,7 @@ onMounted(() => {
</button>
<button class="accent" @click="isEditing = true">
<i class="bi bi-pencil-fill margin"></i>
Edit
Edit availability
</button>
</template>
</div>