From 2a55a1a2c043355bd7c7f30d16807e96d33f87fc Mon Sep 17 00:00:00 2001 From: Anton Tranelis Date: Wed, 23 Oct 2024 11:29:27 +0200 Subject: [PATCH] staff-snake icon --- src/Components/Map/UtopiaMap.css | 6 ++++++ src/Utils/MarkerIconFactory.ts | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/Components/Map/UtopiaMap.css b/src/Components/Map/UtopiaMap.css index f5755349..70812368 100644 --- a/src/Components/Map/UtopiaMap.css +++ b/src/Components/Map/UtopiaMap.css @@ -114,6 +114,12 @@ width: 24px; } + .staff-snake-icon { + position: relative; + top: -36px; + left: 4px; + width: 24px; + } .leaflet-popup-scrolled { overflow-x: hidden; diff --git a/src/Utils/MarkerIconFactory.ts b/src/Utils/MarkerIconFactory.ts index 341335f0..543dd459 100644 --- a/src/Utils/MarkerIconFactory.ts +++ b/src/Utils/MarkerIconFactory.ts @@ -38,6 +38,8 @@ const addIcon = (icon: string) => { return '' case "puzzle": return '' + case "staff-snake": + return '' default: return ""; }