I would like to center a button in an ion-col. What’s the best way to achieve this?
This is my html code:
<ion-col width-25>
<button ion-button icon-left clear>
<ion-icon ios="ios-heart" md="md-heart"></ion-icon>
<span class="buttonText">3</span>
</button>
</ion-col>
I have tried with the following css but it didn’t work
//To center content
display: flex !important;
align-items: center !important;
justify-content: right !important;