Merge branch 'develop'
* develop: fix on mobile hidden contact fix:style fix:tel fix
This commit is contained in:
commit
02f1fd417d
3 changed files with 34 additions and 1 deletions
|
|
@ -17,6 +17,7 @@ import { usePositionKeycloakStore } from '@/stores/positionKeycloak'
|
|||
import DialogHeader from '@/components/DialogHeader.vue'
|
||||
import PopupPrivacy from '@/components/PopupPrivacy.vue'
|
||||
import DialogDebug from '@/components/DialogDebug.vue'
|
||||
import FooterContact from '@/components/FooterContact.vue'
|
||||
|
||||
const mixin = useCounterMixin()
|
||||
const privacyStore = usePrivacyStore()
|
||||
|
|
@ -561,6 +562,14 @@ onMounted(async () => {
|
|||
<router-view :key="$route.fullPath" />
|
||||
</q-page>
|
||||
</q-page-container>
|
||||
|
||||
<!-- Footer -->
|
||||
<q-footer
|
||||
class="bg-grey-1 text-dark q-pa-md"
|
||||
:class="$q.screen.xs ? 'hidden' : ''"
|
||||
>
|
||||
<footer-contact />
|
||||
</q-footer>
|
||||
</q-layout>
|
||||
|
||||
<q-dialog v-model="modalReset" persistent>
|
||||
|
|
@ -714,4 +723,8 @@ onMounted(async () => {
|
|||
background-color: #016987;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue