Add icons to redirect to social media on topbar mobile

This commit is contained in:
enzoggqs
2023-02-15 12:53:17 -03:00
parent dab0842b65
commit 426d0b750f
4 changed files with 36 additions and 1 deletions

View File

@@ -333,9 +333,35 @@ onClickOutside(currencyRef, () => {
Desconectar
</RouterLink>
</div>
<div class="w-full flex justify-center pb-20">
<div class="w-full flex justify-center">
<hr class="w-4/5" />
</div>
<div class="menu-button pb-10">
<div class="redirect_button flex">
<img
alt="Twitter"
width="20"
height="20"
src="@/assets/twitterIcon.svg"
class="mr-6"
onclick="location.href = 'https://www.twitter.com/doiim';"
/>
<img
alt="Discord"
width="20"
height="20"
src="@/assets/discordIcon.svg"
class="mr-6"
/>
<img
alt="Github"
width="20"
height="20"
src="@/assets/githubIcon.svg"
onclick="location.href = 'https://github.com/doiim';"
/>
</div>
</div>
</div>
</div>
</div>