Account menu overlays UI instead of pushing it

This commit is contained in:
natsoni
2024-03-18 16:49:33 +09:00
parent 34d93abbf6
commit 2c6f210e8e
5 changed files with 5 additions and 38 deletions

View File

@@ -1,12 +1,12 @@
.sidenav {
z-index: 1;
z-index: 10;
background-color: transparent;
width: 225px;
height: calc(100vh - 65px);
position: sticky;
position: fixed;
top: 65px;
transition: 0.25s;
margin-left: -250px;
left: -250px;
transition: left 0.25s;
box-shadow: 5px 0px 30px 0px #000;
padding-bottom: 20px;
@media (max-width: 613px) {
@@ -26,7 +26,6 @@
}
.sidenav.open {
margin-left: 0px;
left: 0px;
display: block;
background-color: #1d1f31;