diff --git a/src/components/ProgressCard.vue b/src/components/ProgressCard.vue index a1f3e0c..26959ed 100644 --- a/src/components/ProgressCard.vue +++ b/src/components/ProgressCard.vue @@ -15,7 +15,7 @@ const targetIsVisible = useElementVisibility(chartRef, { }); const currentlyVisiblePercentage = computed(() => targetIsVisible.value ? props.item.completion : 0); const animatedPercentage = useTransition(currentlyVisiblePercentage, { - duration: 2000, + duration: 1000, easing: TransitionPresets.easeInOutQuad }); diff --git a/src/pages/index.vue b/src/pages/index.vue index 097cb4d..349a63c 100644 --- a/src/pages/index.vue +++ b/src/pages/index.vue @@ -1,4 +1,6 @@