From: Dessalines Date: Sat, 25 Jan 2020 01:55:57 +0000 (-0500) Subject: Moving notification to bottom left. Fixes #457 X-Git-Url: http://these/git/%7B%60https:/static/gitweb.js?a=commitdiff_plain;h=d26f4c50d300e108882c23c954155bd03abe3d88;p=lemmy.git Moving notification to bottom left. Fixes #457 --- diff --git a/ui/src/utils.ts b/ui/src/utils.ts index 6a0ffdb3..7803ee4e 100644 --- a/ui/src/utils.ts +++ b/ui/src/utils.ts @@ -382,6 +382,8 @@ export function toast(text: string, background: string = 'success') { Toastify({ text: text, backgroundColor: backgroundColor, + gravity: 'bottom', + position: 'left', }).showToast(); }