I have the following code that display small avatars:
<ion-avatar *ngFor="let user of item.users;">
<img src="{{ user.avatar }}" style="max-width:2.5rem; max-height:2.5rem;">
</ion-avatar>
As it seems, the default size of ion-avatar is 4rem on 4rem .
The result is that the avatars are aligned to the top left corner of a bigger container (which is fine for me - spacing between the avatars).
How can I make the image to be in the center of the ion-avater continer?