[solved] Ion-list not scrolling

Is anyone else having an issue with ion-list not scrolling? The list populates no problem - it just doesn’t scroll when the list goes past the end of the page. Someone else mentioned something about touch clicks getting eaten but I don’t see how that can be happening here.

 <ion-header>
  <ion-toolbar color="primary">
	    <ion-title>
	        Select Game
	    </ion-title>
        <ion-buttons end>
            <button ion-button icon-only (click)="close()"><ion-icon name="close"></ion-icon></button>
        </ion-buttons>
    </ion-toolbar>
</ion-header>

<ion-content padding>
	<ion-list>
		<button ion-item *ngFor="let game of gameTypes" (click)="gameSelected(game)">{{game.name}}</button>
	</ion-list>
</ion-content>

Edit: Actually, it’s all the lists in my app that aren’t scrolling, not just the one on this page.

Nevermind. I’m an idiot. I had the following outside of the page selector. Duh.

.scroll-content {
	overflow-y: hidden;
}