@empoweredvote/ev-ui 0.9.3 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -372,7 +372,7 @@ function RadarChartCore({
|
|
|
372
372
|
cy,
|
|
373
373
|
r: matches ? dotRadius * (8 / 7) : dotRadius,
|
|
374
374
|
fill: matches ? "#fed12e" : "#7C6B9E",
|
|
375
|
-
stroke: "#
|
|
375
|
+
stroke: matches ? "#fed12e" : "#7C6B9E",
|
|
376
376
|
strokeWidth: 3
|
|
377
377
|
}
|
|
378
378
|
);
|
|
@@ -414,7 +414,7 @@ function RadarChartCore({
|
|
|
414
414
|
cy,
|
|
415
415
|
r: matches ? dotRadius * (8 / 7) : dotRadius,
|
|
416
416
|
fill: matches ? "#fed12e" : "#5A9A6E",
|
|
417
|
-
stroke: "#
|
|
417
|
+
stroke: matches ? "#fed12e" : "#5A9A6E",
|
|
418
418
|
strokeWidth: 3
|
|
419
419
|
}
|
|
420
420
|
);
|