From be045dad9bd026cb6d4323d3b70e3ff003cb0daa Mon Sep 17 00:00:00 2001 From: Ezekiel Aquino Date: Wed, 12 Dec 2018 20:37:11 +0100 Subject: Edits landing page animation --- packages/website/ts/@next/components/heroAnimation.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'packages/website/ts/@next/components/heroAnimation.tsx') diff --git a/packages/website/ts/@next/components/heroAnimation.tsx b/packages/website/ts/@next/components/heroAnimation.tsx index bcef5b948..fea757bc3 100644 --- a/packages/website/ts/@next/components/heroAnimation.tsx +++ b/packages/website/ts/@next/components/heroAnimation.tsx @@ -64,19 +64,19 @@ const Image = styled.svg` `; const TopCircle = styled.circle` - animation: ${moveUp} 3s infinite; + animation: ${moveUp} 3s -1.5s infinite; `; const LeftCircle = styled.circle` - animation: ${moveLeft} 3s infinite; + animation: ${moveLeft} 3s -1.5s infinite; `; const Oblong = styled.path` - animation: ${moveLeft} 3s infinite; + animation: ${moveLeft} 3s -1.5s infinite; `; const Square = styled.path` - animation: ${moveDiag} 3s infinite; + animation: ${moveDiag} 3s -1.5s infinite; `; const Rectangle = styled.path` - animation: ${moveRight} 3s infinite; + animation: ${moveRight} 3s -1.5s infinite; `; const Logo = styled.path` -- cgit