From 18793f633b8e2e7d90b0f2131db2a0fff6c615fb Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Mon, 31 Jan 2022 16:18:11 +0100 Subject: [PATCH] UX: Fix bug with desktop widths < 1045px (#29) --- common/common.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common/common.scss b/common/common.scss index e471587..5d27c10 100644 --- a/common/common.scss +++ b/common/common.scss @@ -3,6 +3,11 @@ $padding-basis: 0.75em; .d-toc-main { display: none; width: 225px; + @media screen and (max-width: 1045px) { + .desktop-view & { + width: 150px; + } + } border-left: 1px solid var(--primary-low); box-sizing: border-box; a {