From 61075f99010fec1f4aa44980860481a1a7da7446 Mon Sep 17 00:00:00 2001 From: Daniel Fjeldstad <45217974+w3bdesign@users.noreply.github.com> Date: Wed, 4 Sep 2024 07:51:25 +0200 Subject: [PATCH] Fix mobile menu Fixes #1354 Add bottom-0 and mb-4 classes to the mobile menu div in `components/Layout/LayoutMobileMenu.vue`. * Set the mobile menu as fixed and positioned just above the footer with a margin bottom. * Add `bottom-0` class to the `div` with class `fixed top-0 left-0 h-[calc(100vh-4rem)] w-screen mt-4 z-10 bg-white animate__animated`. * Add `mb-4` class to the `div` with class `fixed top-0 left-0 h-[calc(100vh-4rem)] w-screen mt-4 z-10 bg-white animate__animated`. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/w3bdesign/nuxtjs-woocommerce/issues/1354?shareId=XXXX-XXXX-XXXX-XXXX). --- components/Layout/LayoutMobileMenu.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Layout/LayoutMobileMenu.vue b/components/Layout/LayoutMobileMenu.vue index f5dc571e..9ab91f29 100644 --- a/components/Layout/LayoutMobileMenu.vue +++ b/components/Layout/LayoutMobileMenu.vue @@ -2,7 +2,7 @@