From 92b9e30f62d8dbea434c03e0efb8dba4d4c4f76a Mon Sep 17 00:00:00 2001 From: ndrooo Date: Thu, 8 Aug 2024 14:00:01 -0400 Subject: [PATCH] Run prettier for SCSS files. --- quartz/components/styles/explorer.scss | 8 ++++++-- quartz/components/styles/toc.scss | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/quartz/components/styles/explorer.scss b/quartz/components/styles/explorer.scss index 314bdc533..2f94b158c 100644 --- a/quartz/components/styles/explorer.scss +++ b/quartz/components/styles/explorer.scss @@ -45,12 +45,16 @@ button#explorer { list-style: none; overflow: hidden; max-height: none; - transition: max-height 0.35s ease, visibility 0s linear 0s; + transition: + max-height 0.35s ease, + visibility 0s linear 0s; margin-top: 0.5rem; visibility: visible; &.collapsed { - transition: max-height 0.35s ease, visibility 0s linear 0.35s; + transition: + max-height 0.35s ease, + visibility 0s linear 0.35s; visibility: hidden; } diff --git a/quartz/components/styles/toc.scss b/quartz/components/styles/toc.scss index c48d9620b..6845812f5 100644 --- a/quartz/components/styles/toc.scss +++ b/quartz/components/styles/toc.scss @@ -29,12 +29,16 @@ button#toc { list-style: none; overflow: hidden; max-height: none; - transition: max-height 0.5s ease, visibility 0s linear 0s; + transition: + max-height 0.5s ease, + visibility 0s linear 0s; position: relative; visibility: visible; &.collapsed { - transition: max-height 0.5s ease, visibility 0s linear 0.5s; + transition: + max-height 0.5s ease, + visibility 0s linear 0.5s; visibility: hidden; }