fix(live-game): fixed size for the game start timer

This commit is contained in:
Valentin Kaelin 2020-09-29 18:49:20 +02:00
parent b21c7ff416
commit 9879146433
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@
<span>V</span>
<span class="ml-4 -mt-3">S</span>
</div>
<div class="pb-2 text-blue-200">{{ displayStartTime }}</div>
<div class="w-10 pb-2 text-blue-200">{{ displayStartTime }}</div>
</div>
<ul class="w-1/2 text-left">
<li

View file

@ -4,7 +4,7 @@
<div v-if="liveLoaded" class="flex items-center justify-end -mt-4 text-base text-blue-200">
<div>{{ gamemode.type }} {{ gamemode.name }}</div>
<div class="mx-2">-</div>
<div>{{ displayStartTime }}</div>
<div class="w-12">{{ displayStartTime }}</div>
<button
@click="liveMatchRequest"
class="px-3 py-1 ml-4 text-blue-100 bg-blue-800 rounded-md shadow-md hover:bg-blue-760"