Change header size (with title and icons)

Hey there :slight_smile:

Is it possible to adjust the height of the header in ionic V4 ? I want to increase it a little bit.

I tried with CSS, it’s fine on the browser, but on real device (iOS) it’s broken the header is cut.

thanks !

I found the solution, you have to set the height of the ion-title inside the header (not on the header itself).

if it helps

 ion-header {
    ion-title {
      height: 60px;
    }
  }