Made Explorer height match remaining visible height

This commit is contained in:
saberzero1 2024-08-14 17:03:06 +02:00
parent 697127e8bb
commit 86704bb41d
2 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,12 @@
@use "../../styles/variables.scss" as *;
.explorer {
&.desktop-only,
&.tablet-only {
overflow-y: auto;
}
}
button#explorer {
background-color: transparent;
border: none;
@ -76,6 +83,9 @@ button#explorer {
pointer-events: all;
}
}
> #explorer-ul {
max-height: none;
}
}
svg {

View File

@ -188,10 +188,12 @@ a {
& .sidebar.left {
left: calc(calc(100vw - $pageWidth) / 2 - $sidePanelWidth);
max-height: calc(100vh - $topSpacing);
@media all and ($desktop) {
left: 0;
}
@media all and ($mobile) {
max-height: unset;
gap: 0;
align-items: center;
position: initial;