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.jsx2
-rw-r--r--src/core/components/layouts/AppLayout.jsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/components/layouts/AnimationLayout.jsx b/src/core/components/layouts/AnimationLayout.jsx
index adb6b081..cf2b06d5 100644
--- a/src/core/components/layouts/AnimationLayout.jsx
+++ b/src/core/components/layouts/AnimationLayout.jsx
@@ -2,7 +2,7 @@ import { motion } from 'framer-motion'
const AnimationLayout = ({ children, ...props }) => {
const transition = {
- ease: 'easeOut',
+ ease: 'easeIn',
duration: 0.3
}
diff --git a/src/core/components/layouts/AppLayout.jsx b/src/core/components/layouts/AppLayout.jsx
index 7aaa52ca..3e986477 100644
--- a/src/core/components/layouts/AppLayout.jsx
+++ b/src/core/components/layouts/AppLayout.jsx
@@ -4,8 +4,8 @@ import AnimationLayout from "./AnimationLayout"
const AppLayout = ({ children, title }) => {
return (
<>
- <AppBar title={title}/>
<AnimationLayout>
+ <AppBar title={title}/>
{ children }
</AnimationLayout>
</>