mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
25 lines
774 B
HTML
25 lines
774 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>
|
|
<button round light outline>button light</button>
|
|
<button round stable outline>button stable</button>
|
|
<button round primary outline>button primary</button>
|
|
<button round secondary outline>button secondary</button>
|
|
<button round danger outline>button danger</button>
|
|
<button round dark outline>button dark</button>
|
|
</div>
|
|
<style>
|
|
button {
|
|
display: block !important;
|
|
margin: 15px auto !important;
|
|
}
|
|
button:first-child {
|
|
margin-top: 0px !important;
|
|
}
|
|
</style>
|