We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c537baa commit 6217fc8Copy full SHA for 6217fc8
src/components/alert/QAlert.js
@@ -67,14 +67,14 @@ export default {
67
staticClass: 'q-alert-actions col-auto gutter-xs column flex-center'
68
},
69
this.actions.map(action =>
70
- h('div', [
+ h('div', { staticClass: 'full-width' }, [
71
h(QBtn, {
72
staticClass: 'full-width',
73
props: {
74
flat: true,
75
dense: true,
76
- icon: action.icon,
77
align: 'left',
+ icon: action.icon,
78
label: action.closeBtn === true
79
? (typeof action.label === 'string' ? action.label : this.$q.i18n.label.close)
80
: action.label
0 commit comments