mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
fix math
This commit is contained in:
parent
e6e2afa4c3
commit
74c020af11
1 changed files with 1 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue