We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d2118d commit 3c065daCopy full SHA for 3c065da
src/components/vue-ui-accordion.vue
@@ -120,12 +120,14 @@ div.vue-ui-accordion-content {
120
max-height: 0;
121
overflow: hidden;
122
transition: max-height 400ms ease-out, opacity 400ms ease-out;
123
+ pointer-events: none;
124
}
125
126
details[open]+div.vue-ui-accordion-content {
127
max-height: v-bind(maxHeight);
128
transition: max-height 1s ease-out, opacity 1s ease-out;
129
opacity: 1;
130
+ pointer-events: auto;
131
132
133
details[open] span::before {
0 commit comments