Run prettier for SCSS files.

This commit is contained in:
ndrooo 2024-08-08 14:00:01 -04:00
parent bba56d0742
commit 92b9e30f62
2 changed files with 12 additions and 4 deletions

View File

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

View File

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