Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
fix(settings): wrap text on settings page
Browse files Browse the repository at this point in the history
fixes #7
  • Loading branch information
Benjamin Reed committed Sep 10, 2020
1 parent 21a8209 commit d15f670
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/settings/settings.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@
<h3>Automatic Updates</h3>
</ion-list-header>
<ion-item *ngIf="updateService.updateAvailable" color="danger">
<ion-label>You have an update available.</ion-label>
<ion-label class="ion-text-wrap">You have an update available.</ion-label>
<ion-button slot="end" color="light" (click)="updateService.reload()">Reload</ion-button>
</ion-item>
<ion-item>
<ion-label>Receive beta updates?</ion-label>
<ion-label class="ion-text-wrap">Receive beta updates?</ion-label>
<ion-toggle (ionChange)="setBeta()" [(ngModel)]="betaEnabled" slot="end"></ion-toggle>
</ion-item>
<ion-list-header lines="full">
<h3>Disable Sleep</h3>
</ion-list-header>
<ion-item>
<ion-label>Disable sleep while games are active?</ion-label>
<ion-label class="ion-text-wrap">Disable sleep while games are active?</ion-label>
<ion-toggle (ionChange)="setDisableSleep()" [(ngModel)]="disableSleep" slot="end"></ion-toggle>
</ion-item>
</span>
Expand All @@ -35,7 +35,7 @@ <h3>Teams</h3>
<h4>Choose Your Team:</h4>
<ion-note>Your team is first in the live feed.</ion-note>
</ion-label>
<ion-select (ionChange)="setFavoriteTeam($event.detail)" interface="action-sheet" [interfaceOptions]="teamOptions" okText="Choose" cancelText="Cancel" [(ngModel)]="favoriteTeam">
<ion-select class="ion-text-wrap" (ionChange)="setFavoriteTeam($event.detail)" interface="action-sheet" [interfaceOptions]="teamOptions" okText="Choose" cancelText="Cancel" [(ngModel)]="favoriteTeam">
<ion-select-option *ngFor="let team of teams" [value]="team.id">{{team.fullName}}</ion-select-option>
</ion-select>
</ion-item>
Expand Down

0 comments on commit d15f670

Please sign in to comment.