I can't seem to get the toast to vertically centre. I tried using css to centre it but the old top/translateY causes the text to become blurry. Anyone know how to vertically align a toast?
NOTE: We are only using classic
me.toastNotification = Ext.toast({
html: toastMessage,
anchor: anchorEl,
ui: '',
align: {
type: 'vbox'
align: 'center'
pack: 'center'
},
bodyPadding: '10 20 10 20',
width: anchorEl.getWidth() - 40,
autoCloseDelay: 2500,
cls: 'message-panel-toast-notification'
});