Skip to content

Commit

Permalink
fix(map): Fix Width & Height | JIRA PT-159 (#97)
Browse files Browse the repository at this point in the history
Co-authored-by: Trung-Hieu-Dev <dangtrunghieusg.com>
  • Loading branch information
Trung-Hieu-Dev authored Jun 16, 2022
1 parent 2598f55 commit 3bef586
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/map/views/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="map w-full">
<GoogleMap :api-key="googleApi" class="w-full h-[500px]" :center="center" :zoom="15">
<div class="map">
<GoogleMap :api-key="googleApi" class="w-full h-[600px]" :center="center" :zoom="15">
<Marker :options="markerOptions" />
</GoogleMap>
</div>
Expand All @@ -25,6 +25,6 @@ export default defineComponent({

<style lang="scss" scoped>
.map {
@apply w-[96%] rounded-lg overflow-hidden p-0 mt-[25px] mx-auto #{!important};
@apply sm:w-[92%] md:w-[94%] lg:w-[96%] w-[92%] rounded-lg overflow-hidden p-0 mt-[25px] mx-auto #{!important};
}
</style>

0 comments on commit 3bef586

Please sign in to comment.