How can i make an object center in <ion-col>?

This does not work for me. I’m trying to make a grid of avatars that is centre-balnced… I have the following structure:

<ion-grid no-padding>
  <ion-row no-padding justify-content-start align-items-start>
    <ion-col ion-item no-lines no-padding text-center col-2 *ngFor="let item of items | slice:0:12"> 
      <ion-avatar>
        <img draggable="false" [src]="item.thumbnail">
      </ion-avatar>
    </ion-col>
  </ion-row>
</ion-grid>

It seems no matter what I do with css or ionic utilities… I just cannot get the avatars to center…

PLEASE HELP!