This commit is contained in:
ThatOneCalculator 2023-06-12 02:00:38 -07:00
parent f69c6ef274
commit f72120bb9a
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ const r = 0.45;
const color = $computed(
() =>
`hsl(${
props.reverse ? 180 + props.value * 180 : 180 - props.value * 180
props.reverse ? props.value * 180 : 180 - props.value * 180
}, 80%, 70%)`
);
const strokeDashoffset = $computed(