]> Untitled Git - lemmy.git/commitdiff
Moving notification to bottom left. Fixes #457
authorDessalines <tyhou13@gmx.com>
Sat, 25 Jan 2020 01:55:57 +0000 (20:55 -0500)
committerDessalines <tyhou13@gmx.com>
Sat, 25 Jan 2020 01:55:57 +0000 (20:55 -0500)
ui/src/utils.ts

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