From 02400c6d752fb3f7fe36068cdaa330f148940ea3 Mon Sep 17 00:00:00 2001 From: ASC95 <16790624+ASC95@users.noreply.github.com> Date: Fri, 27 Sep 2024 17:42:32 -0400 Subject: [PATCH] adjust search sidebar max height to fit within microgridup iframe --- omf/static/geoJsonMap/v3/searchModal.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/omf/static/geoJsonMap/v3/searchModal.css b/omf/static/geoJsonMap/v3/searchModal.css index 669b5343a..e5a68feee 100644 --- a/omf/static/geoJsonMap/v3/searchModal.css +++ b/omf/static/geoJsonMap/v3/searchModal.css @@ -109,12 +109,12 @@ ***************************************/ /* -- Set a max-height that works on desktop and laptops +- Set a max-height that works on desktop and laptops AND our microgridup iframe (81vh) - Hide overflow-x so the horizontal scrollbar doesn't flash in appearance - Set overflow-y so that the user can scroll through the search results */ .searchModal + div { - max-height: 83vh; + max-height: 81vh; overflow-x: hidden; overflow-y: auto; }