From 1406361cf0c6d6cd2daeda4f6f464641786915bb Mon Sep 17 00:00:00 2001 From: ogerly Date: Sat, 22 Oct 2022 08:33:30 +0200 Subject: [PATCH] change pixel mobile menu show by under 811px --- webapp/layouts/default.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/layouts/default.vue b/webapp/layouts/default.vue index e7095d8b6..d0d12dd6b 100644 --- a/webapp/layouts/default.vue +++ b/webapp/layouts/default.vue @@ -270,7 +270,7 @@ export default { }, showMobileMenu() { if (!this.windowWidth) return false - return this.windowWidth < 810 + return this.windowWidth < 811 }, }, methods: {