Files
eh-downloader/static/common.css
2023-05-26 17:01:13 +08:00

24 lines
323 B
CSS

.nav-menu {
z-index: 100;
position: fixed;
background-color: white;
box-sizing: border-box;
display: block;
left: -64px;
transition: all 0.5s ease;
height: 100vh;
}
.nav-menu.open {
left: 0px;
}
.main {
position: fixed;
top: 64px;
}
.settings label {
line-height: 40px;
}