From 2aa4761d6dfaa007ed632816de9416a6477cd370 Mon Sep 17 00:00:00 2001 From: Steve Klebanoff Date: Mon, 15 Oct 2018 10:28:26 -0700 Subject: add semicolons --- .../instant/src/components/animations/slide_up_and_down_animation.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/instant') 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}; } `; -- cgit v1.2.3