Buttons shtuff

This commit is contained in:
Max Lynch
2015-07-20 13:44:27 -05:00
parent 34b62ff172
commit 6c5dbbd680
6 changed files with 40 additions and 8 deletions

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,7 @@
import {App} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class IonicApp {}

View File

@@ -0,0 +1,18 @@
<div>
<button round light>button light</button>
<button round stable>button stable</button>
<button round primary>button primary</button>
<button round secondary>button secondary</button>
<button round danger>button danger</button>
<button round dark>button dark</button>
</div>
<style>
button {
display: block !important;
margin: 15px auto !important;
}
button:first-child {
margin-top: 80px !important;
}
</style>