Change editable fog outline to light grey

This commit is contained in:
Mitchell McCaffrey 2021-02-09 08:00:24 +11:00
parent f1dce05830
commit cdb91eed60

View File

@ -371,7 +371,9 @@ function MapFog({
onMouseUp={eraseHoveredShapes} onMouseUp={eraseHoveredShapes}
onTouchEnd={eraseHoveredShapes} onTouchEnd={eraseHoveredShapes}
points={points} points={points}
stroke={editable ? colors.white : colors[shape.color] || shape.color} stroke={
editable ? colors.lightGray : colors[shape.color] || shape.color
}
fill={colors[shape.color] || shape.color} fill={colors[shape.color] || shape.color}
closed closed
lineCap="round" lineCap="round"