From 7b5621a441b0f5d7c67de2a29c0df1a715ee0900 Mon Sep 17 00:00:00 2001 From: Thomas Ballmann Date: Mon, 23 Nov 2020 16:23:35 +0100 Subject: [PATCH] #42 wrong menu behaviours on mobile --- app/src/layouts/default.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/src/layouts/default.vue b/app/src/layouts/default.vue index 96c1bef..885121d 100644 --- a/app/src/layouts/default.vue +++ b/app/src/layouts/default.vue @@ -7,6 +7,7 @@ class="grey darken-3" dark app + :temporary="temporary" mobile-breakpoint="sm" _mini-variant-width="150" _mini-variant @@ -224,6 +225,9 @@ }), computed: { ...mapState(['stats', 'settings']), + temporary () { + return this.smAndDown + }, }, }