Vertically center some element

For instance I have the ion-grid with some elements and all I want to do i to vertically center the ion-grid within all available space.

What is the simplest solution?

Try this:

ion-grid {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
}