aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/animations
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-10-16 01:28:26 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-10-16 01:28:26 +0800
commit2aa4761d6dfaa007ed632816de9416a6477cd370 (patch)
treec03151f7f21a9a0db02229b8e3661e3cb87061ac /packages/instant/src/components/animations
parent0aef2c8ade2b0ae7b7ab7fef25ee4e8644a8b6c4 (diff)
downloaddexon-0x-contracts-2aa4761d6dfaa007ed632816de9416a6477cd370.tar
dexon-0x-contracts-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.gz
dexon-0x-contracts-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.bz2
dexon-0x-contracts-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.lz
dexon-0x-contracts-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.xz
dexon-0x-contracts-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.zst
dexon-0x-contracts-2aa4761d6dfaa007ed632816de9416a6477cd370.zip
add semicolons
Diffstat (limited to 'packages/instant/src/components/animations')
-rw-r--r--packages/instant/src/components/animations/slide_up_and_down_animation.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/components/animations/slide_up_and_down_animation.tsx b/packages/instant/src/components/animations/slide_up_and_down_animation.tsx
index 958684021..ce1539c70 100644
--- a/packages/instant/src/components/animations/slide_up_and_down_animation.tsx
+++ b/packages/instant/src/components/animations/slide_up_and_down_animation.tsx
@@ -5,12 +5,12 @@ import { keyframes, styled } from '../../style/theme';
const slideKeyframeGenerator = (fromY: string, toY: string) => keyframes`
from {
position: relative;
- top: ${fromY}
+ top: ${fromY};
}
to {
position: relative;
- top: ${toY}
+ top: ${toY};
}
`;