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