File tree Expand file tree Collapse file tree 3 files changed +43
-2
lines changed
dev/components/components Expand file tree Collapse file tree 3 files changed +43
-2
lines changed Original file line number Diff line number Diff line change 1+ <template >
2+ <div class =" q-layout-padding" >
3+ <div class =" row no-wrap q-col-gutter-x-md" >
4+ <div v-for =" type in ['a', 'button']" :key =" type" class =" col q-gutter-y-md" >
5+ <div v-for =" (prop, i) in props" :key =" i" class =" q-gutter-y-md" >
6+ <div class =" row q-gutter-md items-center" >
7+ <q-btn :type =" type" v-bind =" prop" round icon =" clear" color =" primary" />
8+ <q-btn :type =" type" v-bind =" prop" icon =" clear" color =" primary" />
9+ <q-btn :type =" type" v-bind =" prop" icon =" clear" color =" primary" style =" max-width : 0 ; min-height : 0 " />
10+ <q-btn :type =" type" v-bind =" prop" icon =" clear" label =" Label" color =" primary" />
11+ <q-btn :type =" type" v-bind =" prop" label =" Label" color =" primary" />
12+ <q-btn :type =" type" v-bind =" prop" size =" sm" no-caps label =" Label" color =" primary" />
13+ </div >
14+ <q-btn :type =" type" v-bind =" prop" icon =" clear" label =" Label" color =" primary" class =" full-width" />
15+ <q-btn :type =" type" v-bind =" prop" icon =" clear" label =" Label" color =" primary" class =" full-width" align =" left" />
16+ <q-btn :type =" type" v-bind =" prop" icon =" clear" label =" Label" color =" primary" class =" full-width" align =" right" />
17+ <q-btn :type =" type" v-bind =" prop" icon-right =" clear" label =" Label" color =" primary" class =" full-width" />
18+ <q-btn :type =" type" v-bind =" prop" icon-right =" clear" label =" Label" color =" primary" class =" full-width" align =" left" />
19+ <q-btn :type =" type" v-bind =" prop" icon-right =" clear" label =" Label" color =" primary" class =" full-width" align =" right" />
20+ <q-btn :type =" type" v-bind =" prop" label =" Label" color =" primary" class =" full-width" />
21+ <q-btn :type =" type" v-bind =" prop" label =" Label" color =" primary" class =" full-width" align =" left" />
22+ <q-btn :type =" type" v-bind =" prop" label =" Label" color =" primary" class =" full-width" align =" right" />
23+ </div >
24+ </div >
25+ </div >
26+ </div >
27+ </template >
28+
29+ <script >
30+ export default {
31+ data () {
32+ return {
33+ props: [
34+ {},
35+ { outline: true },
36+ { unelevated: true },
37+ { push: true },
38+ { flat: true }
39+ ]
40+ }
41+ }
42+ }
43+ </script >
Original file line number Diff line number Diff line change 2121 @at-root #{selector-unify('a', & )}
2222 display : inline-flex
2323 flex-direction : column
24- align-items : center
2524
2625 .q-icon , .q-spinner
2726 font-size : $button-line-height
Original file line number Diff line number Diff line change 2020 a &
2121 display inline - flex
2222 flex-direction column
23- align-items center
2423
2524 .q-icon , .q-spinner
2625 font-size $button-line-height
You can’t perform that action at this time.
0 commit comments