Loving the Bulma flow. Just wanted to make my images more obvious that they can do things when clicked.
I can bind a style with vue.js such as
<figure class="image is-128x128">
<img v-bind:src="currentTrack.coverURL"
@mouseover="hover = true"
@mouseleave="hover = false"
@click="playAudio()"
:style="hover ? {opacity:0.5} : {opacity:1}" alt=""/>
</figure>
but the mouse pointer doesn't change to something that might help it seem more button like... wondering if there is an easy Bulma attribute I can add
thanks in advance!