From 9a455182b4857fbbec86796236f1b7f8c12296bc Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 23 Sep 2024 16:20:50 +1200 Subject: [PATCH] docs(accordion): add overflow to custom motion example --- apps/docs/content/components/accordion/custom-motion.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/docs/content/components/accordion/custom-motion.ts b/apps/docs/content/components/accordion/custom-motion.ts index 625c9623c3..f54d0493dd 100644 --- a/apps/docs/content/components/accordion/custom-motion.ts +++ b/apps/docs/content/components/accordion/custom-motion.ts @@ -12,6 +12,7 @@ export default function App() { y: 0, opacity: 1, height: "auto", + overflowY: "unset", transition: { height: { type: "spring", @@ -29,6 +30,7 @@ export default function App() { y: -10, opacity: 0, height: 0, + overflowY: "hidden", transition: { height: { easings: "ease",