From 3aa11357aa34c1a43765f10965b1b2befa145133 Mon Sep 17 00:00:00 2001 From: Emile Bangma Date: Wed, 16 Oct 2024 23:44:30 +0200 Subject: [PATCH] fix(toc): regression (#1517) --- 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 5c5f5b8..4988cd8 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;