Skip to content

Commit

Permalink
refactor: move the maps modal css classes to box element
Browse files Browse the repository at this point in the history
  • Loading branch information
amoncaldas committed Nov 2, 2021
1 parent 7e8febf commit 14f6ffd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/maps/Maps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@
</places-carousel>
</v-bottom-nav>

<v-dialog v-model="isSettingsOpen" max-width="600" class="settings-modal" :persistent="true" attach="body">
<box background="white" v-if="isSettingsOpen" resizable closable @closed="closeSettingsModal()">
<v-dialog v-model="isSettingsOpen" max-width="600" :persistent="true" attach="body">
<box background="white" v-if="isSettingsOpen" class="settings-modal" resizable closable @closed="closeSettingsModal()">
<h3 slot="header">{{$t('maps.settings')}}</h3>
<settings @saved="closeSettingsModal"></settings>
</box>
</v-dialog>

<v-dialog v-model="isAboutOpen" max-width="600" class="about-modal" :persistent="true" attach="body">
<box background="white" v-if="isAboutOpen" resizable closable @closed="closeAboutModal()">
<v-dialog v-model="isAboutOpen" max-width="600" :persistent="true" attach="body">
<box background="white" v-if="isAboutOpen" class="about-modal" resizable closable @closed="closeAboutModal()">
<h3 slot="header">{{$t('maps.aboutTitle')}}</h3>
<about></about>
</box>
Expand Down

0 comments on commit 14f6ffd

Please sign in to comment.