From 0429d99ef8ebcadbbf3e0686e32be2d62073163b Mon Sep 17 00:00:00 2001 From: Kieran Klukas <92754843+kcoderhtml@users.noreply.github.com> Date: Fri, 29 Dec 2023 13:46:14 -0500 Subject: [PATCH] feat: made notification hide completely --- src/components/Notification.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Notification.astro b/src/components/Notification.astro index 0cc5487..72db265 100644 --- a/src/components/Notification.astro +++ b/src/components/Notification.astro @@ -23,7 +23,7 @@ @keyframes disappear { 0% { - bottom: -10vh; + bottom: -100vh; } 10% { @@ -35,7 +35,7 @@ } 100% { - bottom: -10vh; + bottom: -100vh; } }