mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
fix: footer develit logo
This commit is contained in:
parent
c477c535a2
commit
747a1d9e12
1 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
const isHovered = ref(false)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -227,9 +228,9 @@
|
||||||
text-app-text-grey
|
text-app-text-grey
|
||||||
whitespace-nowrap
|
whitespace-nowrap
|
||||||
>{{ 'Developed by' }}</span>
|
>{{ 'Developed by' }}</span>
|
||||||
<div
|
<NuxtImg
|
||||||
shrink-0
|
shrink-0
|
||||||
bg="[url(/develit-logo-white.svg)]"
|
:src="isHovered ? '/develit-logo-color.svg' : '/develit-logo-white.svg'"
|
||||||
duration-300
|
duration-300
|
||||||
bg-no-repeat
|
bg-no-repeat
|
||||||
bg-center
|
bg-center
|
||||||
|
@ -237,7 +238,8 @@
|
||||||
w-full
|
w-full
|
||||||
max-w-104px
|
max-w-104px
|
||||||
h-32px
|
h-32px
|
||||||
hover:bg="[url(/develit-logo-color.svg)]"
|
@mouseover="isHovered = true"
|
||||||
|
@mouseleave="isHovered = false"
|
||||||
@click="navigateTo('https://develit.io/', { external: true })"
|
@click="navigateTo('https://develit.io/', { external: true })"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue