diff --git a/js/package.json b/js/package.json index 94dc34c15..8a0add4a1 100644 --- a/js/package.json +++ b/js/package.json @@ -65,10 +65,12 @@ "floating-vue": "^2.0.0-beta.17", "graphql": "^15.8.0", "graphql-tag": "^2.10.3", + "hammerjs": "^2.0.8", "intersection-observer": "^0.12.0", "jwt-decode": "^3.1.2", "leaflet": "^1.4.0", "leaflet.locatecontrol": "^0.76.0", + "leaflet.markercluster": "^1.5.3", "lodash": "^4.17.11", "ngeohash": "^0.6.3", "p-debounce": "^4.0.0", @@ -98,8 +100,10 @@ "@rushstack/eslint-patch": "^1.1.4", "@tailwindcss/forms": "^0.5.2", "@tailwindcss/typography": "^0.5.4", + "@types/hammerjs": "^2.0.41", "@types/leaflet": "^1.5.2", "@types/leaflet.locatecontrol": "^0.74", + "@types/leaflet.markercluster": "^1.5.1", "@types/lodash": "^4.14.141", "@types/ngeohash": "^0.6.2", "@types/phoenix": "^1.5.2", diff --git a/js/src/components/Event/EventCard.vue b/js/src/components/Event/EventCard.vue index 1d595f24a..d2aa8bf7a 100644 --- a/js/src/components/Event/EventCard.vue +++ b/js/src/components/Event/EventCard.vue @@ -3,7 +3,7 @@ class="mbz-card snap-center dark:bg-mbz-purple" :class="{ 'sm:flex sm:items-start': mode === 'row', - 'max-w-xs w-[18rem] shrink-0 flex flex-col': mode === 'column', + 'sm:max-w-xs sm:w-[18rem] shrink-0 flex flex-col': mode === 'column', }" :to="to" :isInternal="isInternal" diff --git a/js/src/components/Event/EventMetadataBlock.vue b/js/src/components/Event/EventMetadataBlock.vue index 8a8fa3161..baadec234 100644 --- a/js/src/components/Event/EventMetadataBlock.vue +++ b/js/src/components/Event/EventMetadataBlock.vue @@ -1,6 +1,6 @@