From eabde77ed57825bcdf36c0153086e9905a2c6e2f Mon Sep 17 00:00:00 2001 From: EETagent Date: Sun, 4 Dec 2022 00:26:21 +0100 Subject: [PATCH] feat: pulse for not submitted files --- .../components/dashboard/StatusNotificationDot.svelte | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/frontend/src/lib/components/dashboard/StatusNotificationDot.svelte b/frontend/src/lib/components/dashboard/StatusNotificationDot.svelte index 436633b..26f7a69 100644 --- a/frontend/src/lib/components/dashboard/StatusNotificationDot.svelte +++ b/frontend/src/lib/components/dashboard/StatusNotificationDot.svelte @@ -19,7 +19,7 @@ -
+
@@ -29,15 +29,22 @@ @apply rounded-full p-1; } + .div-submitted { + @apply animate-none; + } + .submitted { @apply bg-[#35e000ff]; } .uploaded { @apply bg-[#ff8530ff]; - } + @apply animate-none; + } + .missing { @apply bg-red-700; } + \ No newline at end of file