From dd51babd1769dc4f801a74064803b9bb6b6ea08a Mon Sep 17 00:00:00 2001 From: avik-taranis Date: Sun, 5 May 2024 12:43:45 +0300 Subject: [PATCH 1/2] Fixing leaflet greyed our areas --- src/components/molecules/map/Map.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/molecules/map/Map.tsx b/src/components/molecules/map/Map.tsx index aff07a87..0e71eabe 100644 --- a/src/components/molecules/map/Map.tsx +++ b/src/components/molecules/map/Map.tsx @@ -13,6 +13,12 @@ const useStyles = makeStyles({ root: { height: '100%', width: '100%', + + '& img': { + 'position': 'relative', + 'display': 'block', + 'max-width': '100%' + }, }, }); From e4490b182c88f669a6f67da81ff9c3cfa8bbaa2a Mon Sep 17 00:00:00 2001 From: avik-taranis Date: Sun, 5 May 2024 12:48:03 +0300 Subject: [PATCH 2/2] Removed redundant properties --- src/components/molecules/map/Map.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/molecules/map/Map.tsx b/src/components/molecules/map/Map.tsx index 0e71eabe..30fa742f 100644 --- a/src/components/molecules/map/Map.tsx +++ b/src/components/molecules/map/Map.tsx @@ -15,9 +15,7 @@ const useStyles = makeStyles({ width: '100%', '& img': { - 'position': 'relative', 'display': 'block', - 'max-width': '100%' }, }, });