diff options
author | Francesco Agosti <francesco.agosti93@gmail.com> | 2018-10-27 02:14:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-27 02:14:00 +0800 |
commit | 4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f (patch) | |
tree | dbfc6614e901c44d32775b1fe69bb957706c9cf0 /packages/instant/src/components/animations/slide_animations.tsx | |
parent | d2bf23de71bc2bdfaca14bd7026daa59ca5ef386 (diff) | |
parent | 30809e646be02025d6f9e9ed0ff214d9ace681c8 (diff) | |
download | dexon-0x-contracts-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar dexon-0x-contracts-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.gz dexon-0x-contracts-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.bz2 dexon-0x-contracts-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.lz dexon-0x-contracts-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.xz dexon-0x-contracts-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.zst dexon-0x-contracts-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.zip |
Merge pull request #1175 from 0xProject/feature/instant/input-fees-rounding
[instant] Create a ScalingInput component and use it in the amount input and upgrade to styled-components v4
Diffstat (limited to 'packages/instant/src/components/animations/slide_animations.tsx')
-rw-r--r-- | packages/instant/src/components/animations/slide_animations.tsx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/packages/instant/src/components/animations/slide_animations.tsx b/packages/instant/src/components/animations/slide_animations.tsx index 1f10a2ed6..84280372b 100644 --- a/packages/instant/src/components/animations/slide_animations.tsx +++ b/packages/instant/src/components/animations/slide_animations.tsx @@ -1,6 +1,7 @@ import * as React from 'react'; +import { Keyframes } from 'styled-components'; -import { keyframes, styled } from '../../style/theme'; +import { css, keyframes, styled } from '../../style/theme'; const slideKeyframeGenerator = (fromY: string, toY: string) => keyframes` from { @@ -15,7 +16,7 @@ const slideKeyframeGenerator = (fromY: string, toY: string) => keyframes` `; export interface SlideAnimationProps { - keyframes: string; + keyframes: Keyframes; animationType: string; animationDirection?: string; } @@ -24,7 +25,10 @@ export const SlideAnimation = styled.div < SlideAnimationProps > ` - animation-name: ${props => props.keyframes}; + animation-name: ${props => + css` + ${props.keyframes}; + `}; animation-duration: 0.3s; animation-timing-function: ${props => props.animationType}; animation-delay: 0s; |