1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy.git synced 2025-04-21 10:24:06 +00:00

Moving notification to bottom left. Fixes

This commit is contained in:
Dessalines 2020-01-24 20:55:57 -05:00
parent ed842dfb72
commit d26f4c50d3

2
ui/src/utils.ts vendored
View file

@ -382,6 +382,8 @@ export function toast(text: string, background: string = 'success') {
Toastify({
text: text,
backgroundColor: backgroundColor,
gravity: 'bottom',
position: 'left',
}).showToast();
}