From 85297c424cdfa0de1537a2010a80e68aaea376a8 Mon Sep 17 00:00:00 2001 From: mateusz-winiarczyk <mateusz.winiarczyk@appunite.com> Date: Fri, 9 Feb 2024 10:44:36 +0100 Subject: [PATCH] fix(legend): unable to remove legend and return to the main map (MIN-259) --- .../Map/Legend/LegendImages/LegendImages.component.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Map/Legend/LegendImages/LegendImages.component.tsx b/src/components/Map/Legend/LegendImages/LegendImages.component.tsx index 04516e44..dfc49d8f 100644 --- a/src/components/Map/Legend/LegendImages/LegendImages.component.tsx +++ b/src/components/Map/Legend/LegendImages/LegendImages.component.tsx @@ -16,7 +16,7 @@ export const LegendImages: React.FC = () => { key={imageUrl} src={`${BASE_MAP_IMAGES_URL}/minerva/${imageUrl}`} alt={imageUrl} - className="h-[400px]" + className="h-[400px] max-h-[50vh]" /> ))} </div> -- GitLab