From 53edc3f3c4c3cf1e374bf63dea4c1dbb1808cc58 Mon Sep 17 00:00:00 2001 From: phantamanta44 Date: Mon, 19 Jul 2021 15:21:16 -0500 Subject: [PATCH] Fix incorrect fixed positioning for autocompletion box in advanced atlas --- items_2.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/items_2.css b/items_2.css index f23e295..7517d33 100644 --- a/items_2.css +++ b/items_2.css @@ -11,6 +11,7 @@ } .search-field-container { + position: relative; display: inline-block; vertical-align: top; } @@ -24,13 +25,12 @@ .search-field { width: 25vw; padding: 8px; - position: relative; display: block; } .search-field-compl { max-height: 50vh; - position: fixed; + position: absolute; display: none; background-color: #212121; border: solid 1px #666;