Skip to content

Commit

Permalink
refactor: reduce delay in select animation
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Sep 5, 2024
1 parent aa5042d commit 6be76b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Select/WSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,12 @@ const xPosition = computed(() => xPositions[props.dropdownXPosition])
.dropdown-leave-active {
transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
transition-delay: 0.5s;
transition-delay: 0.2s;
}
.dropdown-enter-active {
transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
transition-delay: 0.5s;
transition-delay: 0.2s;
}
.vs--open {
.vs__open-indicator {
Expand Down

0 comments on commit 6be76b4

Please sign in to comment.