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 const { color, x, y0, y1 } = props
return ( return (
<g> <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 <circle
stroke="white" stroke="white"
strokeWidth={3} strokeWidth={1}
fill={color} fill={color}
cx={x} cx={x}
cy={y1} cy={y1}