diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-10-16 01:28:26 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-10-16 01:28:26 +0800 |
commit | 2aa4761d6dfaa007ed632816de9416a6477cd370 (patch) | |
tree | c03151f7f21a9a0db02229b8e3661e3cb87061ac /packages | |
parent | 0aef2c8ade2b0ae7b7ab7fef25ee4e8644a8b6c4 (diff) | |
download | dexon-sol-tools-2aa4761d6dfaa007ed632816de9416a6477cd370.tar dexon-sol-tools-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.gz dexon-sol-tools-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.bz2 dexon-sol-tools-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.lz dexon-sol-tools-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.xz dexon-sol-tools-2aa4761d6dfaa007ed632816de9416a6477cd370.tar.zst dexon-sol-tools-2aa4761d6dfaa007ed632816de9416a6477cd370.zip |
add semicolons
Diffstat (limited to 'packages')
-rw-r--r-- | packages/instant/src/components/animations/slide_up_and_down_animation.tsx | 4 |
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}; } `; |