From a4e2ce178dddd44df05c841859291359819034eb Mon Sep 17 00:00:00 2001 From: Cassie Tarakajian Date: Wed, 17 Apr 2019 16:51:58 -0400 Subject: [PATCH] fixes #1040 (#1042) --- client/styles/components/_toast.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/client/styles/components/_toast.scss b/client/styles/components/_toast.scss index e1219676..2b3c0db5 100644 --- a/client/styles/components/_toast.scss +++ b/client/styles/components/_toast.scss @@ -2,9 +2,10 @@ background-color: $toast-background-color; color: $toast-text-color; padding: #{10 / $base-font-size}rem; - position: absolute; - bottom: 10%; - left: 5%; + position: fixed; + top: 0; + left: 50%; + transform: translate(-50%, 0); min-width: #{375 / $base-font-size}rem; //500px font-size: #{20 / $base-font-size}rem; display: flex;