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; }