Hello,
I try to add to my card header a icon button. I want that the button is on the right side of the screen and have the same vertical position like the header.
In the moment, the icon is directly beside the header text, is not vertical centered (the icon top is the same as the text top, but the icon is higher than the text).
This is my code:
<ion-card>
<ion-card-header>
Indikationen
<button ion-button icon-only item-right clear>
<ion-icon name="md-create"></ion-icon>
</button>
</ion-card-header>
<ion-card-content [innerHTML]="medi['indi']">
</ion-card-content>
</ion-card>