[footer] fix positioning when menu component is not loaded

This commit is contained in:
nymkappa
2023-08-30 18:58:21 +02:00
parent 9cb72cff31
commit 4664e55513
2 changed files with 16 additions and 1 deletions

View File

@@ -238,4 +238,18 @@ nav {
main {
transition: 0.2s;
transition-property: max-width;
}
}
// empty sidenav
.sidenav {
z-index: 1;
background-color: transparent;
width: 225px;
height: calc(100vh - 65px);
position: sticky;
top: 65px;
transition: 0.25s;
margin-left: -250px;
box-shadow: 5px 0px 30px 0px #000;
padding-bottom: 20px;
}