made slice skinnier

This commit is contained in:
ingawei 2022-10-04 13:27:56 -07:00
parent a55d85d4b6
commit 32d6fb0fa8

View File

@ -124,10 +124,10 @@ export const SliceMarker = (props: {
const { color, x, y0, y1 } = props
return (
<g>
<line stroke="white" strokeWidth={3} x1={x} x2={x} y1={y0} y2={y1} />
<line stroke="white" strokeWidth={1} x1={x} x2={x} y1={y0} y2={y1} />
<circle
stroke="white"
strokeWidth={3}
strokeWidth={1}
fill={color}
cx={x}
cy={y1}