When I run 5 tabs on an ionic 2 app in an iphone 5s emulator, it has wide margins between the icons and it cuts off the first and last icon off screen. Where should I set the minimum width and margins to support the smaller screen? Which scss file?
Also, shouldn’t we reduce the minimum width to support 5 tabs on a smaller scree? It looks like there is plenty of space.
<ion-tabs>
<ion-tab [root]="tabFavesRoot" tabTitle="Faves" tabIcon="heart"></ion-tab>
<ion-tab [root]="tabPeopleRoot" tabTitle="People" tabIcon="people"></ion-tab>
<ion-tab [root]="tabHostGameRoot" tabTitle="Create" tabIcon="add-circle"></ion-tab>
<ion-tab [root]="tabMessagesRoot" tabTitle="Messages" tabIcon="chatbubbles"></ion-tab>
<ion-tab [root]="tabMyProfileRoot" tabTitle="My Profile" tabIcon="person"></ion-tab>
</ion-tabs>