partitioncloud-server/partitioncloud/static/mobile.css

20 lines
395 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-06-10 16:46:55 +02:00
/* Make content not scrollable */
#content-container {
overflow: hidden;
2022-12-19 18:19:29 +01:00
}
2023-06-10 16:46:55 +02:00
/* calc(var(--sidebar-size) - 20px) seems not to be working so I'm hardcoding this.. */
#settings-container {
width: calc(75vw - 20px);
2022-12-19 18:19:29 +01:00
}
}