From 4616f8ac70d70b7a672ec88d16d617b66cef8645 Mon Sep 17 00:00:00 2001 From: lesion Date: Fri, 18 Nov 2022 14:33:38 +0100 Subject: [PATCH] minor on map icons --- components/Map.vue | 6 +++--- components/WhereInput.vue | 22 +++++++++++++++++++--- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/components/Map.vue b/components/Map.vue index cc1ff028..c0578e30 100644 --- a/components/Map.vue +++ b/components/Map.vue @@ -24,11 +24,11 @@ client-only(placeholder='Loading...' ) v-row //- p.my-4(v-text="$t('common.getting_there')") v-btn.ml-2(icon large :href="routeBy('foot')") - v-icon(v-text='mdiWalk' color='white') + v-icon(v-text='mdiWalk') v-btn.ml-2(icon large :href="routeBy('bike')") - v-icon(v-text='mdiBike' color='white') + v-icon(v-text='mdiBike') v-btn.ml-2(icon large :href="routeBy('car')") - v-icon(v-text='mdiCar' color='white') + v-icon(v-text='mdiCar') v-spacer v-btn(@click='$emit("close")' outlined) Close diff --git a/components/WhereInput.vue b/components/WhereInput.vue index 4f708abe..76ea1935 100644 --- a/components/WhereInput.vue +++ b/components/WhereInput.vue @@ -46,6 +46,7 @@ v-row.mb-4 :hint="$t('event.address_description')") template(v-slot:item="{ item, attrs, on }") v-list-item(v-bind='attrs' v-on='on') + v-icon.pr-4(v-text='loadCoordinatesResultIcon(item)') v-list-item-content(two-line v-if='item') v-list-item-title(v-text='item.name') v-list-item-subtitle(v-text='`${item.address}`') @@ -62,7 +63,7 @@ v-row.mb-4