I tried centering my content using has-text-centered
of Bulma.
But "Hello" is a little bit off to the left. Why?
My Code:
<div class="columns is-multiline">
<div class="column is-2"><p class="notification is-primary has-text-centered">Hello</p></div>
</div>
In notification class there is "padding:1.25rem 2.5rem 1.25rem 1.5rem" you need to change it to this "padding: 1.25rem 1.5rem 1.25rem 1.5rem".