Skip to content

Commit

Permalink
test(label): update basic test with colors
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Jul 23, 2018
1 parent 38b1e47 commit c3b5dc7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions core/src/components/label/test/basic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,31 @@
</ion-header>

<ion-content>
<div padding>
<ion-label>Default</ion-label>

<ion-label color="secondary">Secondary</ion-label>

<ion-label color="tertiary">Tertiary</ion-label>

<ion-label color="danger">Danger</ion-label>

<ion-label class="custom">Custom</ion-label>
</div>

<ion-list>
<ion-item>
<ion-label>Default</ion-label>
<ion-input></ion-input>
</ion-item>
<ion-item>
<ion-label color="tertiary">Tertiary</ion-label>
<ion-input></ion-input>
</ion-item>
<ion-item>
<ion-label class="custom">Custom</ion-label>
<ion-input></ion-input>
</ion-item>
<ion-item>
<ion-label text-wrap>Wrap label this label just goes on and on and on</ion-label>
<ion-input></ion-input>
Expand All @@ -42,6 +62,12 @@
</ion-item>
</ion-list>
</ion-content>

<style>
.custom {
color: lightblue;
}
</style>
</ion-app>
</body>

Expand Down

0 comments on commit c3b5dc7

Please sign in to comment.