move notification with new marging and close button close #7
This commit is contained in:
@@ -48,9 +48,24 @@ export function useNotify() {
|
||||
$q?.notify({
|
||||
message: message,
|
||||
color: color,
|
||||
position: 'bottom-right',
|
||||
position: 'top-left',
|
||||
icon: icon,
|
||||
timeout: timeout,
|
||||
classes: 'custom-notify',
|
||||
attrs: {
|
||||
style: 'margin-top: 50px',
|
||||
},
|
||||
actions: [
|
||||
{
|
||||
icon: 'close',
|
||||
color: 'white',
|
||||
dense: true,
|
||||
round: true,
|
||||
handler: () => {
|
||||
/* just closes */
|
||||
},
|
||||
},
|
||||
],
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user