mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
27 lines
678 B
HTML
27 lines
678 B
HTML
|
|
<ion-toolbar>
|
|
<ion-title>Round Buttons</ion-title>
|
|
</ion-toolbar>
|
|
|
|
<ion-content padding>
|
|
<button round>button</button>
|
|
<button round light>button light</button>
|
|
<button round secondary>button secondary</button>
|
|
<button round danger>button danger</button>
|
|
<button round dark>button dark</button>
|
|
|
|
<button round outline>button</button>
|
|
<button round light outline>button light</button>
|
|
<button round secondary outline>button secondary</button>
|
|
<button round danger outline>button danger</button>
|
|
<button round dark outline>button dark</button>
|
|
|
|
</ion-content>
|
|
|
|
<style>
|
|
button {
|
|
display: block !important;
|
|
margin: 8px auto !important;
|
|
}
|
|
</style>
|