forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButtonDesign.vue
More file actions
28 lines (28 loc) · 1.32 KB
/
ButtonDesign.vue
File metadata and controls
28 lines (28 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<template>
<div class="q-pa-md q-gutter-sm">
<q-btn flat color="primary" label="Flat" />
<q-btn flat rounded color="primary" label="Flat Rounded" />
<q-btn flat round color="primary" icon="card_giftcard" />
<br>
<q-btn outline color="primary" label="Outline" />
<q-btn outline rounded color="primary" label="Outline Rounded" />
<q-btn outline round color="primary" icon="card_giftcard" />
<br>
<q-btn push color="primary" label="Push" />
<q-btn push color="primary" round icon="card_giftcard" />
<q-btn push color="white" text-color="primary" label="Push" />
<q-btn push color="white" text-color="primary" round icon="card_giftcard" />
<br>
<q-btn unelevated color="primary" label="Unelevated" />
<q-btn unelevated rounded color="primary" label="Unelevated Rounded" />
<q-btn unelevated round color="primary" icon="card_giftcard" />
<br>
<q-btn no-caps color="primary" label="No caps" />
<br>
<q-btn class="glossy" color="teal" label="Glossy" />
<q-btn class="glossy" rounded color="deep-orange" label="Glossy Rounded" />
<q-btn class="glossy" round color="primary" icon="card_giftcard" />
<q-btn class="glossy" round color="secondary" icon="local_florist" />
<q-btn class="glossy" round color="deep-orange" icon="local_activity" />
</div>
</template>