Replies: 4 comments 11 replies
-
Overflow:hidden is required when the element is collpased otherwise it would show the content of the div on your page when the height is 0 P.s. https://twitter.com/calebporzio/status/1430564014464159749?t=jbKbTNhbKrDA6qF-eajv2Q&s=19 |
Beta Was this translation helpful? Give feedback.
-
Anyone found a temporary solution to this issue? |
Beta Was this translation helpful? Give feedback.
-
I created a PR(#3949) that solves this.. I also added a optional modifier |
Beta Was this translation helpful? Give feedback.
-
I managed to solve this by applying |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
When using
x-collapse
I found that it addsoverflow: hidden;
style to the element even when it on collapsed state. I know that it's really necessary to get a smooth transition but it makes a little mess with my dropdown inside that being chopped due to theoverflow: hidden;
.I think it's better to use
overflow: initial;
when the element not expanded and change it back tooverflow: hidden;
when starting the transition and when the element collapsed.I don't know if that's possible but let see what @calebporzio think.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions