Hello,
I’m using Ionic tabs and above it I have my toolbar, if I change the min-height it overlaps my tabs, see image below:
that is my css:
.home-page {
.toolbar {
min-height: 200px;
}
}
In my home-page-html:
<ion-toolbar>
</ion-toolbar>
<ion-tabs>
<ion-tab *ngFor="let subject of subjects" [root]="subject.component" [tabTitle]="subject.title" [tabIcon]="subject.icon"></ion-tab>
</ion-tabs>
What am I missing?