Padding on ion-nav-bar

Hello,
I am learning about ionic.
Is it possible to add some padding on ion-nav-bar element? I want to have a bigger nav-bar on my app.

I’ve already try this

<ion-nav-bar class="bar-balanced" padding="true"></ion-nav-bar>

and

<ion-nav-bar class="bar-balanced" style="padding:8em;"></ion-nav-bar>

Did i do it wrong or maybe another solutions to fix this problem?

Thank you

try to add padding=“true” in your ion-nav-bar tag , then filter the css to fix the padding !

Do u mean like this?

<ion-nav-bar class="bar-balanced" padding="true" style="padding:50px;"></ion-nav-bar>

It is still does not work… Can u give me some example?