added hover over text

This commit is contained in:
booploops 2022-02-24 04:37:10 -08:00
parent 1f36f8e691
commit 97e37149ae

View file

@ -6,8 +6,8 @@
<div class="artist-chip__name">
<span>{{ item.attributes.name }}</span>
</div>
<button @click="followArtist" v-if="!$root.cfg.home.followedArtists.includes(item.id)" class="artist-chip__follow codicon codicon-add"></button>
<button @click="unfollowArtist" v-else class="artist-chip__follow codicon codicon-check"></button>
<button @click="followArtist" title="Follow" v-if="!$root.cfg.home.followedArtists.includes(item.id)" class="artist-chip__follow codicon codicon-add"></button>
<button @click="unfollowArtist" title="Following" v-else class="artist-chip__follow codicon codicon-check"></button>
</div>
</script>