summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorRafi Zadanly <rafizadanly@gmail.com>2022-12-19 17:13:41 +0700
committerRafi Zadanly <rafizadanly@gmail.com>2022-12-19 17:13:41 +0700
commit03adcb9bff8cb4a2ffcb442f6e8f787ea205feb4 (patch)
tree72d469c10a24c9797099581e186921c8cca2955b /src/components
parentb17c4ea8bea0b57a2defbfcf327176a874ec1aed (diff)
loading not stop when cart is empty, fix input quantity
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Layout.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Layout.js b/src/components/Layout.js
index 03b9aa59..fb7748d1 100644
--- a/src/components/Layout.js
+++ b/src/components/Layout.js
@@ -10,7 +10,7 @@ export default function Layout({ children, ...pageProps }) {
<motion.main
initial={{ opacity: 0, x: 50, y: 0 }}
animate={{ opacity: 1, x: 0, y: 0 }}
- exit={{ opacity: 0, x: -100, y: 0 }}
+ exit={{ opacity: 0, x: 50, y: 0 }}
transition={transition}
{...pageProps}
>