From f7906afd741cd8afc3a87cbbdb411d402daf0a4e Mon Sep 17 00:00:00 2001 From: finxol Date: Tue, 29 Nov 2022 09:28:14 +0100 Subject: [PATCH] fix(ui): change mobile breakpoints to vuetify defined --- components/TripForm.vue | 2 +- layouts/default.vue | 34 +++++++++++++++------------------- pages/index.vue | 6 +++--- 3 files changed, 19 insertions(+), 23 deletions(-) diff --git a/components/TripForm.vue b/components/TripForm.vue index d0416944..90850c70 100644 --- a/components/TripForm.vue +++ b/components/TripForm.vue @@ -53,7 +53,7 @@ export default { name: "TripForm", data() { return { - mobile: this.$device.isMobileOrTablet, + mobile: this.$vuetify.breakpoint.mobile, search: { from: null, to: null, diff --git a/layouts/default.vue b/layouts/default.vue index a302e0e0..28668828 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -22,8 +22,8 @@