mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
19 lines
449 B
HTML
19 lines
449 B
HTML
|
|
<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>
|