summaryrefslogtreecommitdiff
path: root/src/components/Layout.js
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-01-21 08:19:56 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-01-21 08:19:56 +0700
commit6b4371c096030354f09465e3773200529cf727d1 (patch)
tree26210fef922f60473059593f8ca936f81207ab12 /src/components/Layout.js
parentc3386e06741165427b50fb7f33682bc0fdcabfce (diff)
Detail transaction list
Diffstat (limited to 'src/components/Layout.js')
-rw-r--r--src/components/Layout.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Layout.js b/src/components/Layout.js
index 24017c03..fd507963 100644
--- a/src/components/Layout.js
+++ b/src/components/Layout.js
@@ -8,9 +8,9 @@ export default function Layout({ children, ...pageProps }) {
return children && (
<motion.main
- initial={{ opacity: 0, x: 50, y: 0 }}
+ initial={{ opacity: 0, x: 30, y: 0 }}
animate={{ opacity: 1, x: 0, y: 0 }}
- exit={{ opacity: 0, x: 100, y: 0 }}
+ exit={{ opacity: 0, x: 30, y: 0 }}
transition={transition}
{...pageProps}
>