Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
fix(collapsible): use correct transition timing variable (#1305)
Browse files Browse the repository at this point in the history
  • Loading branch information
ninamarina authored Nov 17, 2023
1 parent 814b9a9 commit a8019f3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions components/collapsible/collapsible_lazy_show.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ export default {
if (!element.style.height) {
element.style.height = '0px';
}
element.style.display = null;
});
},
Expand Down Expand Up @@ -162,6 +160,6 @@ export default {
.enter-active,
.leave-active {
overflow: hidden;
transition: height var(--td300) var(--ttf-quint);
transition: height var(--td300) var(--ttf-out-quint);
}
</style>

0 comments on commit a8019f3

Please sign in to comment.