diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-13 03:37:11 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-13 03:37:11 +0800 |
commit | be045dad9bd026cb6d4323d3b70e3ff003cb0daa (patch) | |
tree | df42770c09e7c15d995f689569ab3a3f8fa3b28c /packages/website/ts | |
parent | 885c22676bd719cfd4f54883de0ebc8567585b9a (diff) | |
download | dexon-sol-tools-be045dad9bd026cb6d4323d3b70e3ff003cb0daa.tar dexon-sol-tools-be045dad9bd026cb6d4323d3b70e3ff003cb0daa.tar.gz dexon-sol-tools-be045dad9bd026cb6d4323d3b70e3ff003cb0daa.tar.bz2 dexon-sol-tools-be045dad9bd026cb6d4323d3b70e3ff003cb0daa.tar.lz dexon-sol-tools-be045dad9bd026cb6d4323d3b70e3ff003cb0daa.tar.xz dexon-sol-tools-be045dad9bd026cb6d4323d3b70e3ff003cb0daa.tar.zst dexon-sol-tools-be045dad9bd026cb6d4323d3b70e3ff003cb0daa.zip |
Edits landing page animation
Diffstat (limited to 'packages/website/ts')
-rw-r--r-- | packages/website/ts/@next/components/heroAnimation.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
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` |