Avoid navbar hiding content and keep page navigation when using tabs

Hi,

Long time ago, I had to keep the page navigation when using tabs view. I fixed the “issue” by putting the ion-tabs inside an ion-content.

page 1 ↔ page 2 ↔ tabs

Now, since beta 10 or 11, the issue that I have is the navbar is hiding a part of the tab content. Yes, I can use css to fix it, but do you know another trick?

Here how look like the code

page1.html

<ion-header>
  <ion-navbar #navcontent>
    <ion-title>Title</ion-title>
  </ion-navbar>
</ion-header>
<ion-content>
  <ion-tabs>
    <ion-tab tabTitle="Details" [root]="details"></ion-tab>
    <ion-tab tabTitle="Info" [root]="info"></ion-tab>
  </ion-tabs>
</ion-content>

details.html

<ion-content>
  <ion-list>
  ...
  </ion-list>
</ion-content>

Thanks