Commit 6436872e by qinjianhui

fix: 工厂订单操作单根据电脑不同分辨率展示

parent 8c7055ae
...@@ -665,4 +665,25 @@ defineExpose({ clearSelection, getSelectedIds, refresh }) ...@@ -665,4 +665,25 @@ defineExpose({ clearSelection, getSelectedIds, refresh })
.flex-row-gap6 { .flex-row-gap6 {
gap: 6px; gap: 6px;
} }
@media (max-width: 1920px) {
.card-grid {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
}
@media (max-width: 1750px) {
.card-grid {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card-info-grid {
grid-template-columns: 1fr 180px;
}
}
@media (max-width: 1550px) {
.card-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-info-grid {
grid-template-columns: 1fr 200px;
}
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment