App Logo In Header

Headers in Ionic have a height of 44px. So, you need to make sure the logo is sized less than that.

Here is how I forced that :

.title-image {
    margin-top: 8px;
    height: 27px;
}

Resulting in:

2 Likes