sciactive / pnotify

Beautiful JavaScript notifications with Web Notifications support.
https://sciactive.com/pnotify/
Apache License 2.0
3.65k stars 513 forks source link

Reduce space between multiple notifications #286

Closed amirhosseinmanian closed 7 years ago

amirhosseinmanian commented 7 years ago

I need to show multiple pnotifies closer to each other. Is there a setting for that or something else? notifies

amirhosseinmanian commented 7 years ago

Temporary solution: .ui-pnotify-container { margin-top: -30px; }

hperrin commented 7 years ago

You can do this through the spacing properties on a stack. Like this:

var stack_small_spaces = {"dir1": "down", "dir2": "left", "spacing1": 5, "spacing2": 5};
PNotify.prototype.options.stack = stack_small_spaces;
filipbekic01 commented 5 years ago

More simple solution: PNotify.prototype.options.stack.spacing1 = 15