Наконец-то решено:
Я не думаю, что это лучший результат, но я вижу гораздо лучше по центру экрана, поэтому на данный момент это мой единственный вариант.
//. S CSS
.square {
width: 40%;
margin: 1%;
}
.wrapper {
display: grid;
height: 100%;
width: 100%;
align-items: center;
justify-items: center;
}
// HTML
<div class="wrapper">
<ion-grid class="square">
<ion-row>
<ion-col>
<img class="animate__animated animate__fadeInDown animate__slow" src="../../assets/icon1.png" style="width:60px;"/>
</ion-col>
<ion-col>
<img class="animate__animated animate__fadeInRight animate__slow" src="../../assets/icon2.png" style="width:60px;"/>
</ion-col>
</ion-row>
<ion-row>
<ion-col>
<img class="animate__animated animate__fadeInUp animate__slow" src="../../assets/icon3.png" style="width:60px"/>
</ion-col>
<ion-col>
<img class="animate__animated animate__fadeInLeft animate__slow" src="../../assets/icon4.png" style="width:60px;"/>
</ion-col>
</ion-row>
</ion-grid>
</div>