From c5d97db0003b239abaf456f4152ab3864bca4424 Mon Sep 17 00:00:00 2001 From: Aaron Pham Date: Sat, 12 Oct 2024 18:33:07 -0400 Subject: [PATCH] fix(toc): invalid desktop-only styling (#1502) * fix(toc): invalid desktop-only styling should display none instead. * Update toc.scss --- quartz/components/styles/toc.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quartz/components/styles/toc.scss b/quartz/components/styles/toc.scss index 3b2b6b3..5c5f5b8 100644 --- a/quartz/components/styles/toc.scss +++ b/quartz/components/styles/toc.scss @@ -1,8 +1,8 @@ .toc { display: flex; flex-direction: column; + &.desktop-only { - display: flex; max-height: 40%; } }