Skip to content

Commit 2a72576

Browse files
author
Pooya Parsa
committed
feat(button): set light as default variant
b4.beta secondary is now "grey" this reduces breaking changes
1 parent c4086a0 commit 2a72576

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/components/button.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default {
4949
return this.block ? 'btn-block' : '';
5050
},
5151
btnVariant() {
52-
return this.variant ? `btn-${this.variant}` : `btn-secondary`;
52+
return this.variant ? `btn-${this.variant}` : `btn-light`;
5353
},
5454
btnSize() {
5555
return this.size ? `btn-${this.size}` : '';

0 commit comments

Comments
 (0)