feat: fadein search results

This commit is contained in:
ccmdi 2025-11-22 18:15:51 -05:00
parent 750725ee4e
commit 335c39d1b7
No known key found for this signature in database

View file

@ -598,16 +598,21 @@
}
.map-search-results {
display: none;
margin-top: 4px;
max-height: 200px;
overflow-y: auto;
border-radius: 6px;
background: var(--background-secondary);
opacity: 0;
transform: translateY(-8px);
pointer-events: none;
transition: opacity 0.2s ease, transform 0.2s ease;
}
.map-search-results.visible {
display: block;
opacity: 1;
transform: translateY(0);
pointer-events: all;
}
.map-search-result-item {