Fix mobile footer overlap: relative positioning instead of absolute

This commit is contained in:
Jarvis Prime
2026-03-24 14:18:49 +00:00
parent 04b735dee2
commit 533e0d7baf

View File

@@ -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%; }