From ec2de415a03f18965a69f98abe30b6fd62db0c9a Mon Sep 17 00:00:00 2001 From: "Dmitry Iv." Date: Sat, 30 Nov 2024 12:27:00 -0500 Subject: [PATCH] Fix mobile margin --- document/core/static/custom.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/document/core/static/custom.css b/document/core/static/custom.css index 950236af0f..bd17eb028d 100644 --- a/document/core/static/custom.css +++ b/document/core/static/custom.css @@ -82,3 +82,9 @@ div.sphinxsidebar a { div.sphinxsidebar a:hover { border-bottom: 1px dotted; } + +@media screen and (max-width: 875px) { + div.bodywrapper { + margin: 0; + } +}