fix: remove hover on old links

This commit is contained in:
Valentin Kaelin 2019-11-08 16:10:20 +01:00
parent 2f1f36997e
commit 0399680a9e

View file

@ -87,21 +87,18 @@
<img src="@/assets/img/icons/Gold.svg" alt="Gold" /> <img src="@/assets/img/icons/Gold.svg" alt="Gold" />
<div class="ml-1 gold text-sm font-bold"> <div class="ml-1 gold text-sm font-bold">
{{ data.stats.gold }} {{ data.stats.gold }}
<!-- <span class="font-normal">gold</span> -->
</div> </div>
</div> </div>
<div class="flex items-center"> <div class="flex items-center">
<img src="@/assets/img/icons/Damage.svg" alt="Damage" /> <img src="@/assets/img/icons/Damage.svg" alt="Damage" />
<div class="ml-1 damage text-sm font-bold"> <div class="ml-1 damage text-sm font-bold">
{{ data.stats.dmgChamp }} {{ data.stats.dmgChamp }}
<!-- <span class="font-normal">dmg</span> -->
</div> </div>
</div> </div>
<div class="flex items-center"> <div class="flex items-center">
<img src="@/assets/img/icons/KillParticipation.svg" alt="KillParticipation" /> <img src="@/assets/img/icons/KillParticipation.svg" alt="KillParticipation" />
<div class="ml-1 kp text-sm font-bold"> <div class="ml-1 kp text-sm font-bold">
{{ data.stats.kp|percent }} {{ data.stats.kp|percent }}
<!-- <span class="font-normal">kp</span> -->
</div> </div>
</div> </div>
</div> </div>
@ -133,7 +130,7 @@
class="w-6 h-6 bg-blue-1000 bg-center bg-cover rounded-full" class="w-6 h-6 bg-blue-1000 bg-center bg-cover rounded-full"
></div> ></div>
<div <div
class="ml-1 w-16 text-left overflow-hidden text-overflow whitespace-no-wrap text-xs text-blue-200 font-medium hover:text-blue-100" class="ml-1 w-16 text-left overflow-hidden text-overflow whitespace-no-wrap text-xs text-blue-200 font-medium"
>{{ data.enemyTeam[index].name }}</div> >{{ data.enemyTeam[index].name }}</div>
</div> </div>
</div> </div>