From cff41423fc70abd1c3e048e607d00910af4a67e7 Mon Sep 17 00:00:00 2001 From: Majorfi Date: Thu, 26 Oct 2023 12:34:55 +0200 Subject: [PATCH] fix: improve entrance animation --- pages/vaults-v3/index.tsx | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pages/vaults-v3/index.tsx b/pages/vaults-v3/index.tsx index 0091fedf4..1360a5c0f 100644 --- a/pages/vaults-v3/index.tsx +++ b/pages/vaults-v3/index.tsx @@ -38,13 +38,20 @@ function Counter({value}: {value: number}): ReactElement { return {display}; } -// // After delay -// animation-delay: 1ms; -// // Change to: "Color 2"; -// // Animate: Smart animate; -// animation-timing-function: linear; -// animation-duration: 2000ms; - +function Background(): ReactElement { + return ( + + ); +} function BrandNewVaultCard(): ReactElement { return (
-
+
); }