From 098d05f3d50fb45ad8019b00fc60cf7bec739b0d Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Mon, 28 Feb 2022 18:11:17 +0100 Subject: [PATCH] UX: Hide TOC on mobile docs topics (#32) --- common/common.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/common.scss b/common/common.scss index d47bc94..e8d5d65 100644 --- a/common/common.scss +++ b/common/common.scss @@ -237,4 +237,7 @@ a.d-toc-close { position: sticky; top: calc(var(--header-offset, 60px) + 1em); max-height: calc(100vh - 2em - var(--header-offset, 60px)); + .mobile-view & { + display: none; + } }