Skip to content

Commit

Permalink
Fix map size
Browse files Browse the repository at this point in the history
  • Loading branch information
jlpereira committed Apr 12, 2023
1 parent 3e5252a commit 65ecf2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/otus/components/Search/OtuSearch.vue
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<template>
<div
ref="root"
class="w-screen h-screen fixed top-0 left-0 z-[5000]"
class="w-screen h-screen fixed top-0 left-0 z-[5000] flex flex-col"
>
<VSpinner v-if="isLoading" />
<SearchBar
:label="otu.object_tag"
@close="() => emit('close')"
/>
<div
class="relative"
class="w-full h-full"
:class="{ 'disable-zoom-out': disableZoom }"
>
<VMap
ref="mapRef"
class="w-screen h-screen"
class="w-full h-full"
controls
:dragging="!disableZoom"
:zoom-bounds="maxZoom"
Expand Down

0 comments on commit 65ecf2f

Please sign in to comment.