For some reason Ionic think that my page has content and is adding in a scrollbar. Here is my page:
And the code for the page:
<ion-header>
<ion-navbar>
<ion-title>Week</ion-title>
<ion-buttons end>
<button ion-button icon-only (click)="createPage()">
<ion-icon name="add"></ion-icon>
</button>
</ion-buttons>
</ion-navbar>
</ion-header>
<ion-content padding>
</ion-content>
I found this thread here which tells you how to remove the scroll bar, which I can do but I want to track down what is causing it to appear in the first place.
Any ideas are appreciated. Thanks.