mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-25 05:29:07 +01:00
fix math
This commit is contained in:
parent
e6e2afa4c3
commit
74c020af11
@ -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 New Issue
Block a user