mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-24 01:36:25 +01:00
36 lines
549 B
CSS
36 lines
549 B
CSS
@media (max-width: 1024px) {
|
|
html {
|
|
font-size: 13px;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
max-width: none;
|
|
}
|
|
|
|
nav {
|
|
padding: 0;
|
|
width: 100vw;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 750px) {
|
|
#partitions-grid {
|
|
grid-template-columns: repeat(auto-fill, 170px);
|
|
}
|
|
|
|
.partition {
|
|
width: 160px;
|
|
}
|
|
|
|
.partition-thumbnail {
|
|
width: 160px;
|
|
height: 160px;
|
|
}
|
|
|
|
.edit-button {
|
|
transform: translateX(-40%) translateY(-130%);
|
|
}
|
|
}
|