From 81e24a0cafb1a534dde693cb6d0c526eba18c714 Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Mon, 14 Oct 2024 14:18:32 +0200 Subject: [PATCH] Fix(toc): regression --- quartz/components/styles/toc.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/quartz/components/styles/toc.scss b/quartz/components/styles/toc.scss index 5c5f5b830..4988cd836 100644 --- a/quartz/components/styles/toc.scss +++ b/quartz/components/styles/toc.scss @@ -1,3 +1,5 @@ +@use "../../styles/variables.scss" as *; + .toc { display: flex; flex-direction: column; @@ -7,6 +9,12 @@ } } +@media all and not ($mobile) { + .toc { + display: flex; + } +} + button#toc { background-color: transparent; border: none;