Skip to content

Commit

Permalink
refacto: remove unnecessary animation classes
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Sep 5, 2024
1 parent 15fca02 commit f4c85a6
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/components/Select/WSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,6 @@ const xPosition = computed(() => xPositions[props.dropdownXPosition])
</script>

<style lang="scss">
.dropdown-enter {
transform: translateY(-8px);
}
.dropdown-enter-to {
transform: translateY(0px);
}
Expand All @@ -100,7 +96,7 @@ const xPosition = computed(() => xPositions[props.dropdownXPosition])
transform: translateY(-8px);
}
.dropdown-leave {
.dropdown-leave-from {
transform: translateY(0px);
}
Expand All @@ -109,10 +105,6 @@ const xPosition = computed(() => xPositions[props.dropdownXPosition])
transform: translateY(-8px);
}
.dropdown-leave-from {
transform: translateY(0);
}
.dropdown-leave-active {
transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}
Expand Down

0 comments on commit f4c85a6

Please sign in to comment.