made slice skinnier (#996)

This commit is contained in:
ingawei 2022-10-04 15:41:48 -05:00 committed by GitHub
parent a55d85d4b6
commit 5adaa7253f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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}