diff --git a/src/content/Components/Counter/Counter.vue b/src/content/Components/Counter/Counter.vue index 451e9cb..4ffca9e 100644 --- a/src/content/Components/Counter/Counter.vue +++ b/src/content/Components/Counter/Counter.vue @@ -1,29 +1,21 @@ @@ -90,15 +82,19 @@ const digitStyles = computed(() => ({ ...props.digitStyle })); -const topGradientStyles = computed((): CSSProperties => ({ - height: `${props.gradientHeight}px`, - background: `linear-gradient(to bottom, ${props.gradientFrom}, ${props.gradientTo})` -})); +const topGradientStyles = computed( + (): CSSProperties => ({ + height: `${props.gradientHeight}px`, + background: `linear-gradient(to bottom, ${props.gradientFrom}, ${props.gradientTo})` + }) +); -const bottomGradientStyles = computed((): CSSProperties => ({ - height: `${props.gradientHeight}px`, - background: `linear-gradient(to top, ${props.gradientFrom}, ${props.gradientTo})` -})); +const bottomGradientStyles = computed( + (): CSSProperties => ({ + height: `${props.gradientHeight}px`, + background: `linear-gradient(to top, ${props.gradientFrom}, ${props.gradientTo})` + }) +); const springValues = ref>({}); @@ -163,57 +159,3 @@ const getDigitPosition = (place: number, digit: number): number => { return position; }; - -