summaryrefslogtreecommitdiff
path: root/src/HeroImage.vue
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2018-05-21 13:15:57 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2018-12-13 16:59:33 +0100
commite10b37b0ca0367117748ad902aea78c320f8fc20 (patch)
treeda183667907d09fadeb369fc10dae5e5c4a40bdd /src/HeroImage.vue
parentaea0fa999fd09951835b2d74c53137624f46929e (diff)
downloadbrokentalents-e10b37b0ca0367117748ad902aea78c320f8fc20.tar.gz
brokentalents-e10b37b0ca0367117748ad902aea78c320f8fc20.zip
Add mouseovers
Diffstat (limited to 'src/HeroImage.vue')
-rw-r--r--src/HeroImage.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/HeroImage.vue b/src/HeroImage.vue
index fc1c677..4dd7672 100644
--- a/src/HeroImage.vue
+++ b/src/HeroImage.vue
@@ -1,6 +1,9 @@
<template>
<figure class="image">
- <img :src="`dist/assets/hero-icons/${hero.toLowerCase()}.png`" :style="round? 'border-radius: 50%' : ''">
+ <img :src="`dist/assets/hero-icons/${hero.toLowerCase()}.png`"
+ :style="round? 'border-radius: 50%' : ''"
+ :alt="hero"
+ :title="hero">
</figure>
</template>