diff options
| author | adlyq <[email protected]> | 2022-07-04 21:01:10 +0800 |
|---|---|---|
| committer | adlyq <[email protected]> | 2022-07-04 21:01:10 +0800 |
| commit | 60048fb6df1bbd44818dddad1a89485c8eb659e4 (patch) | |
| tree | 52545f16d66365b40c1423d92a2b47b2d3b07f04 | |
| parent | 79da982908529728afd3c184e40ff212940318d8 (diff) | |
fix: Collpapsible
| -rw-r--r-- | src/components/Collapsible.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/Collapsible.tsx b/src/components/Collapsible.tsx index e9a1ee8..e9f42a2 100644 --- a/src/components/Collapsible.tsx +++ b/src/components/Collapsible.tsx @@ -37,16 +37,15 @@ const variantsCollpapsibleWrap = { height: 0, opacity: 0, visibility: 'hidden', + overflowY: 'hidden', transition: { duration: 0.3 }, }, }; const variantsCollpapsibleChildContainer = { open: { - x: 0, }, closed: { - x: 20, }, }; |
