diff --git a/frontend/src/util/animation/index.js b/frontend/src/util/animation/index.js index 7339011..616500e 100644 --- a/frontend/src/util/animation/index.js +++ b/frontend/src/util/animation/index.js @@ -17,6 +17,18 @@ const animations = { } }`, }, + + text_slide: { + animation: `animation:text-slide 2s linear infinite alternate;`, + keyframes: `@keyframes text-slide{ + 0% { + transform: translateX(0); + } + 100% { + transform: translateX(10px); + } + }`, + }, }; export default animations;