bulma align image center in column
// to center an image horizontally with bulma:
// add has-text-centered to the parent
// add is-inline-block to the figure tag
<div class="has-text-centered">
<figure class="image is-64x64 is-inline-block">
<img class="is-rounded" src="https://unsplash.it/64"/>
</figure>
</div>