From 335c39d1b739ba75611256748ed98858017d216f Mon Sep 17 00:00:00 2001 From: ccmdi Date: Sat, 22 Nov 2025 18:15:51 -0500 Subject: [PATCH] feat: fadein search results --- styles.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 746ead2..12d1352 100644 --- a/styles.css +++ b/styles.css @@ -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 {