partitioncloud-server/partitioncloud/static/mobile.css

18 lines
366 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;
2022-12-19 18:19:29 +01:00
}
}