From 47c1d2dd03a4b3e81c6aea2da67993b6cb987282 Mon Sep 17 00:00:00 2001 From: amaliejvik <125203980+amaliejvik@users.noreply.github.com> Date: Mon, 22 Jul 2024 10:54:20 +0200 Subject: [PATCH] Fix of positioning and overflow for LegendBoxWrapper (#84) --- style.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index 1755c06..35fde9d 100644 --- a/style.css +++ b/style.css @@ -131,15 +131,14 @@ body { } .legendBox-wrapper { - position: sticky; + position: absolute; width: 260px; max-height: 170px; background-color: #fae493; border-radius: 6px; border-style: solid; border-width: 3px; - overflow-y: scroll; - overflow-x: scroll; + overflow: auto; padding-bottom: 6px; }