From 06a88d08cf0b1cf7f16d877f27ee25e1f5e09187 Mon Sep 17 00:00:00 2001 From: "Dmitry Iv." Date: Sat, 30 Nov 2024 14:14:48 -0500 Subject: [PATCH] [spec] Fix mobile margin (#1851) --- 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; + } +}