Address feedback

This commit is contained in:
saberzero1 2024-09-25 15:54:36 +02:00
parent 27d2ceb88c
commit 1e8fe2cd08
No known key found for this signature in database
GPG Key ID: 41AEE99107640F10
2 changed files with 6 additions and 3 deletions

View File

@ -1,8 +1,11 @@
@use "../../styles/variables.scss" as *;
.explorer {
display: flex;
flex-direction: column;
overflow-y: hidden;
&.desktop-only {
overflow-y: hidden;
display: flex;
}
&:after {
pointer-events: none;
@ -63,7 +66,7 @@ button#explorer {
list-style: none;
overflow: hidden;
overflow-y: auto;
max-height: calc(100% - 28px);
max-height: 100%;
transition:
max-height 0.35s ease,
visibility 0s linear 0s;

View File

@ -1,4 +1,4 @@
.toc.desktop-only {
.toc {
max-height: 40%;
}