Merge pull request #15 from phantamanta44/master

Fix fixed positioning for autocomplete box in adv atlas
This commit is contained in:
hppeng-wynn 2021-07-19 13:24:17 -07:00 committed by GitHub
commit 9b2e55f3b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,6 +11,7 @@
} }
.search-field-container { .search-field-container {
position: relative;
display: inline-block; display: inline-block;
vertical-align: top; vertical-align: top;
} }
@ -24,13 +25,12 @@
.search-field { .search-field {
width: 25vw; width: 25vw;
padding: 8px; padding: 8px;
position: relative;
display: block; display: block;
} }
.search-field-compl { .search-field-compl {
max-height: 50vh; max-height: 50vh;
position: fixed; position: absolute;
display: none; display: none;
background-color: #212121; background-color: #212121;
border: solid 1px #666; border: solid 1px #666;