summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-02-18 22:18:46 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-02-18 22:18:46 +0700
commit75767ed41d28947429f3dbef9c7e128ebc552e64 (patch)
tree77bee121ff883c8b1a00680a53d56f9f473a4397 /src/core
parent347e28848fb063ffcb7f9268384409e57b7ef3ad (diff)
change animation
Diffstat (limited to 'src/core')
-rw-r--r--src/core/components/layouts/AnimationLayout.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/components/layouts/AnimationLayout.jsx b/src/core/components/layouts/AnimationLayout.jsx
index 12b6d112..f40f1eec 100644
--- a/src/core/components/layouts/AnimationLayout.jsx
+++ b/src/core/components/layouts/AnimationLayout.jsx
@@ -8,7 +8,7 @@ const AnimationLayout = ({ children, ...props }) => {
return children && (
<motion.main
- initial={{ opacity: 0, x: 15, y: 0 }}
+ initial={{ opacity: 0, x: 30, y: 0 }}
animate={{ opacity: 1, x: 0, y: 0 }}
exit={{ opacity: 0, x: 0, y: 0 }}
transition={transition}