Hi,
I am running Beta 11.
My ion-item looks like this:
<ion-card *ngFor="let site of _sites" >
<button ion-item (click)="goToNextPage(site)">
<ion-icon name="home" item-left></ion-icon>
{{ site.name }}
</button>
<ion-item actions>
<button clear item-left (click)="editSite(site)">
<ion-icon name="create"></ion-icon>
Edit
</button>
<button clear item-right danger (click)="deleteSite(site)">
<ion-icon name="trash"></ion-icon>
Delete
</button>
</ion-item>
</ion-card>
In that view, I have other buttons to show modals. I open one and when closing it, the ion-icon get a little bigger and then come back to initial size.
Not a really big deal, but just wondering why?
Thanks