From 6408164aa79cd227b913c241bbaa12e57b06826e Mon Sep 17 00:00:00 2001 From: amaliejvik Date: Mon, 22 Jul 2024 10:50:57 +0200 Subject: [PATCH] Fix of positioning and overflow for LegendBoxWrapper --- 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; }