Improve UI elements readability
parent
c67bf14980
commit
6f504802d7
|
@ -171,13 +171,15 @@ const rightIndicator = computed(() => {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<span v-else>
|
<span v-else class="aside">
|
||||||
No roles
|
No roles
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
<span :class="{ 'aside': player.playtime == 0}">
|
||||||
{{ player.playtime.toFixed(1) }} hours
|
{{ player.playtime.toFixed(1) }} hours
|
||||||
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ new Date(player.createdAt).toLocaleString() }}
|
{{ new Date(player.createdAt).toLocaleString() }}
|
||||||
|
|
|
@ -133,7 +133,7 @@ onMounted(() => {
|
||||||
</button>
|
</button>
|
||||||
<button class="accent" @click="isEditing = true">
|
<button class="accent" @click="isEditing = true">
|
||||||
<i class="bi bi-pencil-fill margin"></i>
|
<i class="bi bi-pencil-fill margin"></i>
|
||||||
Edit
|
Edit availability
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue