Skip to content

Commit

Permalink
refactor: reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes-huther committed Oct 1, 2023
1 parent cd38440 commit a7b38eb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/AnimatedCheckmark.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,14 @@ const style = computed(() => {
animation: 1s ease-out 0s 1 both scaleAnimation;

.success-animation-circle {
animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle,
animation:
1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle,
0.3s linear 0.9s 1 both fadeOut;
}

.success-animation-check {
animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck,
animation:
1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck,
0.3s linear 0.9s 1 both fadeOut;
}

Expand Down

0 comments on commit a7b38eb

Please sign in to comment.