diff options
-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}; } `; |