Files
eh-downloader/static/common.css
2023-05-27 08:34:18 +08:00

42 lines
554 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 {
width: 100vw;
}
.settings div.text {
width: 100%;
}
.settings label {
line-height: 40px;
}
.settings .mdc-text-field label {
line-height: revert;
top: 22px;
bottom: auto;
}
.settings #s-cookies .mdc-text-field {
min-width: 50%;
}