mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 17:26:26 +01:00
20 lines
395 B
CSS
20 lines
395 B
CSS
@media (max-width: 750px) {
|
|
:root {
|
|
--sidebar-size: 75vw;
|
|
}
|
|
|
|
#content {
|
|
min-width: calc(100vw - 100px);
|
|
}
|
|
|
|
/* Make content not scrollable */
|
|
#content-container {
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* calc(var(--sidebar-size) - 20px) seems not to be working so I'm hardcoding this.. */
|
|
#settings-container {
|
|
width: calc(75vw - 20px);
|
|
}
|
|
}
|