I created a progress bar using conic-gradient, but I'm having trouble with the sharpness of its edges. I've looked for solutions online, but nothing has worked so far. You can view the entire progress bar here.
background-image: conic-gradient(
transparent var(--min-degrees),
#00ACEE var(--min-degrees) var(--progress, 0),
transparent var(--progress, 0)
);
Does anyone have suggestions on how to make the edges smoother?
Appreciate any help!