partitioncloud-server/partitioncloud/static/style/mobile.css

27 lines
582 B
CSS
Raw Normal View History

2023-06-10 16:46:55 +02:00
@media (max-width: 750px) {
:root {
--sidebar-size: 75vw;
2022-08-16 15:22:03 +02:00
}
2023-06-10 16:46:55 +02:00
#content {
min-width: calc(100vw - 100px);
}
2022-12-19 18:19:29 +01:00
2023-09-08 13:56:08 +02:00
/* Make content not scrollable (vertically),
do not collapse thing in a ridiculously small space */
#content-container, #footer {
2023-06-10 16:46:55 +02:00
overflow: hidden;
2023-09-08 13:56:08 +02:00
min-width: 90vw;
position: fixed;
transition: all 0.5s ease;
}
input:checked#slide-sidebar~#content-container {
position: initial;
2022-12-19 18:19:29 +01:00
}
2024-01-27 12:25:27 +01:00
input:checked#slide-sidebar~#footer,#content-container {
min-width: unset;
}
2022-12-19 18:19:29 +01:00
}