From f0caaa8921f7157007096a150dc2cf98a6fac180 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Poussard?= <tpoussard@neogeo.fr> Date: Wed, 30 Aug 2023 12:17:44 +0200 Subject: [PATCH] fix marker not displayed for geocoder --- src/components/Map/Geocoder.vue | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/components/Map/Geocoder.vue b/src/components/Map/Geocoder.vue index bced9885..c145be52 100644 --- a/src/components/Map/Geocoder.vue +++ b/src/components/Map/Geocoder.vue @@ -195,6 +195,15 @@ export default { </script> <style lang="less"> +#marker { + width: 20px; + height: 20px; + border: 1px solid rgb(136, 66, 0); + border-radius: 10px; + background-color: rgb(201, 114, 15); + opacity: 0.7; +} + #geocoder-container { position: absolute; right: 6px; @@ -243,16 +252,6 @@ export default { border-radius: 2px 0 0 2px; } } - - #marker { - width: 20px; - height: 20px; - border: 1px solid rgb(136, 66, 0); - border-radius: 10px; - background-color: rgb(201, 114, 15); - opacity: 0.7; - } - // /* keep placeholder width when opening dropdown */ .multiselect { min-width: 208px; -- GitLab