From 533e0d7bafd8118b2d4c45367ffad93e06f5ac56 Mon Sep 17 00:00:00 2001 From: Jarvis Prime Date: Tue, 24 Mar 2026 14:18:49 +0000 Subject: [PATCH] Fix mobile footer overlap: relative positioning instead of absolute --- src/layouts/Base.astro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index f653b5d..a8bcd3a 100644 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -418,6 +418,10 @@ const isHome = currentPath === '/'; .d-menu .with-dropdown .dropdown { display: none; } .d-logo { display: none; } .d-footer .left, .d-footer .right { float: none; width: 100%; } + /* Fix footer overlap on mobile */ + .d-footer { position: relative !important; bottom: auto !important; } + .d-content-wrap { padding-bottom: 20px !important; } + .d-homepage .d-content-wrap { padding-bottom: 20px !important; } .product-content .right { width: 100%; float: none; } .product-content .left { width: 100%; float: none; } .product-content .sides { width: 100%; }