Skip to content

Commit 6217fc8

Browse files
committed
fix(QAlert): action buttons alignment
1 parent c537baa commit 6217fc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/alert/QAlert.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ export default {
6767
staticClass: 'q-alert-actions col-auto gutter-xs column flex-center'
6868
},
6969
this.actions.map(action =>
70-
h('div', [
70+
h('div', { staticClass: 'full-width' }, [
7171
h(QBtn, {
7272
staticClass: 'full-width',
7373
props: {
7474
flat: true,
7575
dense: true,
76-
icon: action.icon,
7776
align: 'left',
77+
icon: action.icon,
7878
label: action.closeBtn === true
7979
? (typeof action.label === 'string' ? action.label : this.$q.i18n.label.close)
8080
: action.label

0 commit comments

Comments
 (0)