summaryrefslogtreecommitdiff
path: root/src/core/components/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/components/layouts')
-rw-r--r--src/core/components/layouts/AnimationLayout.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/components/layouts/AnimationLayout.jsx b/src/core/components/layouts/AnimationLayout.jsx
index cdd2d059..12b6d112 100644
--- a/src/core/components/layouts/AnimationLayout.jsx
+++ b/src/core/components/layouts/AnimationLayout.jsx
@@ -8,9 +8,9 @@ const AnimationLayout = ({ children, ...props }) => {
return children && (
<motion.main
- initial={{ opacity: 0, x: 0, y: 0 }}
+ initial={{ opacity: 0, x: 15, y: 0 }}
animate={{ opacity: 1, x: 0, y: 0 }}
- exit={{ opacity: 0, x: 15, y: 0 }}
+ exit={{ opacity: 0, x: 0, y: 0 }}
transition={transition}
{...props}
>