From e0510dd3f8d6554bbe8e248b9ab72cb0469af170 Mon Sep 17 00:00:00 2001 From: Tyler Shipe Date: Tue, 13 Apr 2021 17:24:06 -0400 Subject: [PATCH] remove opacity from notification --- components/Notification.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/components/Notification.tsx b/components/Notification.tsx index fcc70ce..4e9d2b1 100644 --- a/components/Notification.tsx +++ b/components/Notification.tsx @@ -52,10 +52,10 @@ const Notification = ({ type, message, description, txid }) => { return (
-
-
+
+
{type === 'success' ? ( @@ -68,21 +68,23 @@ const Notification = ({ type, message, description, txid }) => { )}
-
{message}
+
+ {message} +
{description ? (

{description}

) : null} {txid ? ( View transaction {txid.slice(0, 8)}... {txid.slice(txid.length - 8)} ) : null}
-
+