From 00a4a80b85030417a63ac1bedeabb4d3c0f76780 Mon Sep 17 00:00:00 2001 From: "martin.devaux" Date: Thu, 26 Jun 2025 14:42:53 +0200 Subject: [PATCH] button is more transparent --- traque-front/components/admin/mapPicker.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/traque-front/components/admin/mapPicker.jsx b/traque-front/components/admin/mapPicker.jsx index 177db2f..490f172 100644 --- a/traque-front/components/admin/mapPicker.jsx +++ b/traque-front/components/admin/mapPicker.jsx @@ -14,9 +14,10 @@ function MapActionControl({ onClick, children }) { useEffect(() => { const controlDiv = L.DomUtil.create('div', 'leaflet-bar leaflet-control leaflet-control-custom'); - controlDiv.style.background = 'rgba(0,0,0,0.5)'; + controlDiv.style.background = 'rgba(0,0,0,0.25)'; controlDiv.style.borderRadius = '9999px'; controlDiv.style.padding = '8px'; + controlDiv.style.border = 'none'; controlDiv.title = "Plein écran"; controlDiv.style.display = "flex"; controlDiv.style.alignItems = "center";