From f4145b2f3bca6efd4f38f9b84da9cf7596ed1800 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Sun, 28 Jun 2020 15:44:53 +1000 Subject: [PATCH] Reduced map grid opacity --- src/components/map/MapGrid.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/map/MapGrid.js b/src/components/map/MapGrid.js index 06df57a..c54bb51 100644 --- a/src/components/map/MapGrid.js +++ b/src/components/map/MapGrid.js @@ -71,7 +71,7 @@ function MapGrid({ map, gridSize }) { points={[x * lineSpacingX, 0, x * lineSpacingX, mapHeight]} stroke={isImageLight ? "black" : "white"} strokeWidth={getStrokeWidth(0.1, gridSize, mapWidth, mapHeight)} - opacity={0.8} + opacity={0.5} /> ); } @@ -82,7 +82,7 @@ function MapGrid({ map, gridSize }) { points={[0, y * lineSpacingY, mapWidth, y * lineSpacingY]} stroke={isImageLight ? "black" : "white"} strokeWidth={getStrokeWidth(0.1, gridSize, mapWidth, mapHeight)} - opacity={0.8} + opacity={0.5} /> ); }