From 873d6c47b73e598017533b546b8c1a1aa66b2dfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maro=C5=A1=20=C5=A0pak?= Date: Tue, 11 Dec 2018 18:46:58 +0100 Subject: [PATCH] added fadein animation --- src/config/animations.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/config/animations.js b/src/config/animations.js index ea316217..866af919 100644 --- a/src/config/animations.js +++ b/src/config/animations.js @@ -56,4 +56,13 @@ export const PULSATE = keyframes` 50% { opacity: 1.0; } +`; + +export const FADE_IN = keyframes` + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } `; \ No newline at end of file