From 1ad4714105d7da7ad0cce143f35908d61c1cf23b Mon Sep 17 00:00:00 2001 From: ajspig Date: Fri, 12 Dec 2025 12:54:08 -0500 Subject: [PATCH] fix: mobile hamburger menu. Stacks vertically and no overlap --- quartz/styles/custom.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/quartz/styles/custom.scss b/quartz/styles/custom.scss index 05efd1929..cdab63dae 100644 --- a/quartz/styles/custom.scss +++ b/quartz/styles/custom.scss @@ -94,6 +94,16 @@ body { font-size: 0.86rem; } +@media (max-width: 800px) { + .sidebar.left { + flex-direction: column; + } + + .explorer .explorer-content { + padding-top: 5rem; + } +} + input[type="search"] { background-color: var(--searchBackground); }