feat: add a real error message if the summoner isn't found

This commit is contained in:
vkaelin 2019-10-07 09:54:29 +02:00
parent 7f72112bc5
commit a3b8282911

View file

@ -106,7 +106,12 @@
</template> </template>
<template v-else-if="summonerNotFound"> <template v-else-if="summonerNotFound">
<p>Player can't be found.</p> <div class="mt-12 flex justify-center">
<div class="bg-gradient px-4 py-3 rounded-lg text-center text-lg text-blue-100 font-bold">
<div>Player can't be found.</div>
<div>😕</div>
</div>
</div>
</template> </template>
</div> </div>
</div> </div>